ソース情報
- リポジトリ
- cwilliams5/Alt-Tabby
- ソースの最終更新活動
- 2026年3月8日 04:07
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/cwilliams5/Alt-Tabby --skill review-tool-coverageコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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-tool-coverage |
| description | Audit query tools for accuracy, gaps, and retirement candidates |
| user-invocable | true |
| disable-model-invocation | true |
Enter planning mode. Audit the query tools in tools/ for fitness. Use parallelism where possible.
Query tools (tools/query_*.ps1) exist to give structured answers without loading full files into context. CLAUDE.md lists only the most-used tools — niche tools are intentionally omitted to save per-session context, but they're still referenced by skills when relevant. "Unused by CLAUDE.md" does NOT mean unused.
| Tool | Purpose |
|---|---|
query_config.ps1 | Config registry search — sections, groups, usage |
query_function.ps1 | Extract function body by name |
query_function_visibility.ps1 | Function definition, public/private, all callers |
query_global_ownership.ps1 | Global declaration, writers, readers, manifest |
query_instrumentation.ps1 | Profiler coverage map |
query_interface.ps1 | File public surface (functions + globals) |
query_ipc.ps1 | IPC message senders/handlers |
query_messages.ps1 | Windows message (WM_) handler/sender mapping |
query_profile.py | Speedscope profile analysis |
query_state.ps1 | State machine branch extractor |
query_timers.ps1 | SetTimer inventory by file |
query_visibility.ps1 | Public functions with few external callers |
query_callchain.ps1 | Call graph traversal (forward and -Reverse) |
query_impact.ps1 | Mutation impact analysis |
query_includes.ps1 | Cross-file #Include analysis |
query_mutations.ps1 | Global mutation tracking |
Run each query_*.ps1 tool with no args (or a known-good sample query) and check:
Flag tools that produce silently wrong output (no errors, but stale/incorrect data). A tool that errors loudly is less dangerous than one that lies quietly.
Look for patterns in the codebase that suggest a missing tool:
query_messages.ps1 already covers this for WM_ messages; is there an equivalent need for other patterns?)The bar: would a new tool save >50 lines of context per use? If not, grep is fine.
A tool nobody invokes is dead code with maintenance cost. Check:
.claude/skills/?Note: a tool referenced only by skills (not CLAUDE.md) is NOT a retirement candidate — it's a niche tool by design.
Check each skill in .claude/skills/ — could any benefit from referencing a query tool they don't currently mention? Skills only load on invocation, so adding a niche tool reference costs zero per-session context.
Section 1 — Accuracy issues (tools producing wrong output):
| Tool | Issue | Fix |
|---|---|---|
query_config.ps1 | Registry format changed, parser misses fmt field | Update regex on line 42 |
Section 2 — Gap candidates (potential new tools):
| Pattern | Frequency | Context Saved | Recommendation |
|---|---|---|---|
| "Which files #Include X" | ~2/session | ~80 lines | New tool: query_includes.ps1 |
Section 3 — Retirement candidates (genuinely unused):
| Tool | Last Relevant Use | Recommendation |
|---|---|---|
query_foo.ps1 | Subsystem removed in v0.7 | Delete |
Section 4 — Skill cross-references (niche tools that skills should mention):
| Skill | Tool to Add | Why |
|---|---|---|
review-dead-code | query_visibility.ps1 | Finds public functions with 0 callers |
Ignore any existing plans — create a fresh one.