基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/cwilliams5/Alt-Tabby --skill review-tool-speed命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
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
| name | review-tool-speed |
| description | Review query tools for runtime optimization opportunities |
| user-invocable | true |
| disable-model-invocation | true |
Enter planning mode. Investigate query tool runtime and find optimization opportunities.
The query tools (query_*.ps1 in tools/) are critical for keeping context bloat down and getting programmatic answers.
Research the query tools deeply. Write a plan for all optimizations found. Ignore any existing plans — create a fresh one.
Two tools in tools/ support this workflow. Use them — do not reinvent timing or golden-output infrastructure.
tools/bench_query.ps1 — Timing benchmarkRuns all query tools with representative args, reports external and internal timing.
powershell -File tools/bench_query.ps1 # 3 iterations, full report
powershell -File tools/bench_query.ps1 -InternalOnly # internal timing only
powershell -File tools/bench_query.ps1 -Iterations 5 # more iterations for stability
tools/verify_query.ps1 — Golden output capture & verificationCaptures tool output before changes, verifies output is unchanged after. Strips timing lines automatically. 22 test cases across all query tools.
powershell -File tools/verify_query.ps1 -Capture # save golden (prints dir path)
powershell -File tools/verify_query.ps1 -Verify <dir> # compare against golden
verify_query.ps1 -Capture and bench_query.ps1 for baselineverify_query.ps1 -Verify <golden-dir> — must passbench_query.ps1 — compare against baseline, no regressions