ワンクリックで
audit-workflow
Audit your current AI tool setup against the recommended dev loop workflow and identify gaps
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Audit your current AI tool setup against the recommended dev loop workflow and identify gaps
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | audit-workflow |
| description | Audit your current AI tool setup against the recommended dev loop workflow and identify gaps |
Check your installed tools against the recommended workflow. Identifies what you have, what you're missing, what's redundant, and which dev loop stages have gaps.
/audit-workflow
Scan installed tools:
# Plugins
ls ~/.claude/plugins/cache/ 2>/dev/null
# Skills
ls ~/.claude/skills/ 2>/dev/null
# MCP servers (from settings)
cat ~/.claude/settings.json | grep -A2 '"mcpServers"' 2>/dev/null
# Project-specific
find . -name "CLAUDE.md" -o -name "AGENTS.md" 2>/dev/null
Read ${CLAUDE_PLUGIN_ROOT}/docs/WORKFLOW.md. For each dev loop stage (inner: Plan, Implement, Verify, Review, Ship, Reflect; outer: Discover, Architect, Decompose, Integrate, Retrospect), check which recommended tools are installed and which are missing. Also check cross-cutting sections (Cost Efficiency, Security).
Flag these issues:
These are infrastructure, not installable tools:
## Workflow Audit Report
**Dev loop coverage:** {covered}/{total stages}
**Installed tools:** {count}
**Recommended tools installed:** {count}/{total}
**Redundant tools:** {count}
### Stage-by-Stage Status
#### Inner Loop
| Stage | Tool | Status |
|-------|------|--------|
| Plan | GSD / brainstorming | ✅ / ❌ |
| Implement | superpowers TDD | ✅ / ❌ |
| Verify | stryker-js / agent-browser | ✅ / ❌ |
| Review | code-review / pr-review-toolkit | ✅ / ❌ |
| Ship | commit-commands | ✅ / ❌ |
| Reflect | claude-reflect | ✅ / ❌ |
#### Outer Loop
| Stage | Tool | Status |
|-------|------|--------|
| Discover | GSD new-project / grill-me | ✅ / ❌ |
| Architect | graphify / map-codebase | ✅ / ❌ |
| Decompose | to-issues / to-prd | ✅ / ❌ |
| Integrate | claude-squad / worktrunk | ✅ / ❌ |
| Retrospect | claude-mem timeline | ✅ / ❌ |
#### Cross-Cutting
| Area | Tool | Status |
|------|------|--------|
| Cost Efficiency | caveman / context-mode / headroom | ✅ / ❌ |
| Security | SkillSpector / trailofbits/skills | ✅ / ❌ |
| Observability | langfuse / tokencost / abtop | ✅ / ❌ |
### Redundancies
{tools that overlap — recommend which to keep and which to drop}
### Missing Feedback Loops
{infrastructure gaps that tools can't fill}
### Next Actions
1. {most impactful thing to do next}
2. {second most impactful}
3. {third}
Find tools that probably belong in CATALOG.md but aren't there, via referenced-but-not-catalogued detection + a foundational-tools checklist. Use to audit the catalog for missing heavyweight tools. Triggers - "find catalog gaps", "what's missing from the catalog", "audit catalog completeness".
Add a tool to CATALOG.md + COMPARISON.md and propagate all counts, then sync and audit. Use when adding a single catalogued tool by its GitHub slug. Triggers - "add X to the catalog", "catalog this repo", "/add-catalog-entry owner/repo".
Bootstrap the recommended AI workflow in any repo — checks what's installed, creates CLAUDE.md with quality rules, and identifies gaps
Bootstrap the recommended AI workflow in any repo — checks what's installed, creates CLAUDE.md with quality rules, and identifies gaps
Evaluate an AI tool, skill, or plugin against the catalog and dev loop quality signals before adopting it
Audit your current AI tool setup against the recommended dev loop workflow and identify gaps