From ai-tooling
Audit your current AI tool setup against the recommended ACMM workflow and identify gaps
How this skill is triggered — by the user, by Claude, or both
Slash command
/ai-tooling:audit-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Check your installed tools against the recommended workflow. Identifies what you have, what you're missing, what's redundant, and your current ACMM level.
Check your installed tools against the recommended workflow. Identifies what you have, what you're missing, what's redundant, and your current ACMM level.
/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 ACMM level (L2 through L6), check which recommended tools are installed and which are missing.
Flag these issues:
These are infrastructure, not installable tools:
## Workflow Audit Report
**Current ACMM Level:** L{n}
**Installed tools:** {count}
**Recommended tools installed:** {count}/{total for current level}
**Redundant tools:** {count}
### Level-by-Level Status
#### L2 — Instructed
| Tool | Status |
|------|--------|
| CLAUDE.md | ✅ / ❌ |
| mattpocock/skills | ✅ / ❌ |
| graphify | ✅ / ❌ |
| context7 | ✅ / ❌ |
#### L3 — Measured
...
### 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}
npx claudepluginhub mattbutlerengineering/ai-tooling --plugin ai-toolingGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.