一键导入
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 页面并帮你完成安装。
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
Audit your current AI tool setup against the recommended dev loop workflow and identify gaps
Evaluate an AI tool, skill, or plugin against the catalog and dev loop quality signals before adopting it
基于 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 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}