用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/cwilliams5/Alt-Tabby --skill review-static-coverage命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Audit all lint-ignore suppressions for appropriateness and overuse
Pre-flight checklist — run high-signal review skills before a release
Discover functions that block the main thread, then micro-audit each for internal optimization opportunities
基于 SOC 职业分类
正在显示 SKILL.md
| name | review-static-coverage |
| description | Find gaps in static analysis where new checks could prevent classes of bugs |
| user-invocable | true |
| disable-model-invocation | true |
Enter planning mode. Deep-review production code patterns to find gaps where static analysis checks (tests/check_*.ps1) could prevent whole classes of bugs. Use maximum parallelism — spawn explore agents for independent areas.
Scope: Static analysis pre-gate checks only. NOT AHK test coverage (see review-test-coverage), NOT query tools, NOT check speed (see review-static-speed).
A proposed check must clear ALL of these:
Standalone checks (complex enough to warrant their own process):
check_warn.ps1 — warn directive enforcementBatch checks (grouped to share file cache and reduce PowerShell overhead):
check_batch_simple.ps1 — lightweight pattern checks (switch globals, IPC constants, DllCall types, IsSet patterns, cfg properties, duplicate functions, dead code detection, config registry integrity, etc.)check_batch_functions.ps1 — function-level checkscheck_batch_directives.ps1 — directive-level checkscheck_batch_guards.ps1 — guard pattern checkscheck_batch_patterns.ps1 — code pattern checkscheck_batch_tests.ps1 — test file checksEnforcement tools (in tools/, run as pre-gate checks):
query_global_ownership.ps1 -Check — ownership manifest enforcementquery_function_visibility.ps1 -Check — private function boundary enforcementExplore the production code for patterns that are:
Categories to investigate:
Critical "On" without matching Critical "Off" on all exit pathsWhen proposing a new check, specify where it fits:
For each proposed check:
file.ahk lines X–Y" — show real code that the check would flag (or correctly skip).| Pattern | Detection Method | False Positive Est. | Placement | Justification |
|---|---|---|---|---|
Missing Critical "Off" on early return | Regex: Critical "On" then return without intervening Critical "Off" | Low — pattern is structural | check_batch_guards.ps1 | Easy to miss during edits, silent corruption |
For each proposed check, include:
Order by value: high-frequency silent bugs first, rare edge cases last.
Ignore any existing plans — create a fresh one.