From tac
Audits codebase for agentic layer maturity: scores .claude/commands, specs, adws/agent.py, hooks, agents/trees dirs; identifies gaps and investment opportunities.
npx claudepluginhub melodic-software/claude-code-plugins --plugin tacThis skill is limited to using the following tools:
Audit a codebase for agentic layer coverage and identify investment opportunities.
Audits codebase for agentic layer maturity: checks .claude/commands, specs, adws, hooks, agents, trees; computes coverage score and identifies gaps.
Audits repositories for Claude Code readiness, reviewing CLAUDE.md quality, settings, project organization, MCP configs, and skills; suggests improvements for agentic workflows.
Assesses codebase for AI agent readiness by detecting stacks, monorepos, git setup, and evaluating style, testing, code quality, secrets, and file sizes.
Share bugs, ideas, or general feedback.
Audit a codebase for agentic layer coverage and identify investment opportunities.
$ARGUMENTS: Target directory to audit (defaults to current directory)You are auditing a codebase to assess its agentic layer maturity.
Look for .claude/commands/ or equivalent:
# Check existence
ls -la .claude/commands/ 2>/dev/null || echo "Not found"
# List templates if exists
ls .claude/commands/*.md 2>/dev/null | wc -l
Score: 20 points if exists with 3+ templates
Look for specs/ or equivalent:
# Check existence and count
ls specs/*.md 2>/dev/null | wc -l
Score: 15 points if exists with specs
Look for adws/ or equivalent:
# Check for core module
ls adws/adw_modules/agent.py 2>/dev/null
# Count workflow scripts
ls adws/adw_*.py 2>/dev/null | wc -l
Score: 25 points if adws/ exists, +20 if agent.py exists
Look for .claude/hooks/:
ls .claude/hooks/*.py 2>/dev/null | wc -l
Score: 10 points if hooks exist
Look for agents/ output directory:
ls -d agents/*/ 2>/dev/null | wc -l
Score: 5 points if agent output exists
Look for trees/ isolation:
ls -d trees/*/ 2>/dev/null | wc -l
git worktree list 2>/dev/null | wc -l
Score: 5 points if worktrees exist
| Component | Max Points |
|---|---|
| .claude/commands/ | 20 |
| specs/ | 15 |
| adws/ | 25 |
| adw_modules/agent.py | 20 |
| hooks/ | 10 |
| agents/ | 5 |
| trees/ | 5 |
| Total | 100 |
| Score | Level | Recommendation |
|---|---|---|
| 0-20 | None | Start with minimum viable layer |
| 21-40 | Basic | Add composed workflows |
| 41-60 | Developing | Add hooks and triggers |
| 61-80 | Advanced | Add worktree isolation |
| 81-100 | Complete | Focus on optimization |
Provide audit report:
## Agentic Layer Audit Report
**Directory:** {target}
**Date:** {today}
**Score:** {score}/100
**Level:** {level}
### Components Found
- [x/o] .claude/commands/ ({count} templates)
- [x/o] specs/ ({count} specs)
- [x/o] adws/ ({count} workflows)
- [x/o] adw_modules/agent.py
- [x/o] hooks/ ({count} hooks)
- [x/o] agents/ (output directory)
- [x/o] trees/ (worktree isolation)
### Gaps Identified
1. {missing component}
2. {missing component}
### Recommended Investments
1. {next investment}
2. {next investment}
### Time Investment Analysis
- Estimated current: {percent}% on agentic layer
- Target: 50%+ on agentic layer