소스 정보
- 저장소
- 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명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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.