the signals and their derived score are provisional and subject to change.
validate manually before sharing.
7a73c7889c1ec981dfd76fba38f5096379f62f9945d7b2c97e1e18d1b41fc7e6909da1cb34466224Authored: 1 month ago (Fri, 31 Jul 2026 07:57:34 +0000)Match: Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>821c9d79408ecb1eeed9ac2a37e8d741f53a5c6cAuthored: 1 month ago (Fri, 31 Jul 2026 07:56:09 +0000)Match: Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>13067e055062af3128b15e6d8f08c0bd13416c1bAuthored: 1 month ago (Fri, 24 Jul 2026 16:08:35 +0000)Match: Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>7592060f10e991c9dc15d7de7b1886d8de30f6d7Authored: 5 months ago (Sat, 28 Mar 2026 20:00:23 +0000)Match: Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>93b666b928c21851840edf0ea46b29c4263fb466Authored: 5 months ago (Sat, 28 Mar 2026 19:50:45 +0000)Match: Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>5c78df1ed910b99a6bc0b3624317466314cca4aeAuthored: 5 months ago (Sat, 28 Mar 2026 09:14:14 +0000)Match: Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>d31f0c8c038d4c41263cb14c9c6304722b82bafbAuthored: 5 months ago (Sat, 28 Mar 2026 08:39:53 +0000)Match: Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>3e19eb26fcd421ba184900de29635e8909f6675dAuthored: 5 months ago (Sat, 28 Mar 2026 08:10:23 +0000)Match: Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>a72090f06fd0c743d55aa4eab4e2b1c76b92c547Authored: 5 months ago (Sat, 28 Mar 2026 07:59:28 +0000)Match: Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>.github/copilot-instructions.mdTool: github-copilot# Coding Instructions
## PowerShell 文件编码
- Windows PowerShell 默认编码为 GBK/UTF-16 LE,**严禁**写入项目文件时不指定编码(会导致 UTF8 文件乱码)
- `Set-Content`、`Out-File`、`echo >`、`Write-Output >` 等写入操作必须加 `-Encoding UTF8`
- 正确示例:`Set-Content -Path file.ts -Value "..." -Encoding UTF8`
- 项目所有源码文件统一 UTF-8(无 BOM),由 `.editorconfig` 和 ESLint 兜底
## 长耗时命令轮询
- 后台运行的长时间命令(.github/skillsTool: github-copilot.github/skillsTool: github-copilot.github/skills/luajit-syntax/SKILL.mdTool: unspecified---
name: luajit-syntax
description: 'LuaJIT 3.0 扩展语法支持的实施规划与实现指南。Use when implementing LuaJIT extension syntax support (bitwise ~>>, ternary ?:, safe navigation ?., nil-coalescing ??, customary operators ! && || !=, compound assignment, continue, const declaration, short function expression, number underscores) in the Lua language server, when modifying script/parser/compile.lua, script/parser/tokens.lua, script/config/template.lua, script/files.lua, or adding tests under none