| created | "2026-02-05T00:00:00.000Z" |
| modified | "2026-07-18T00:00:00.000Z" |
| compatibility | claude-code |
| reviewed | "2026-04-15T00:00:00.000Z" |
| user-invocable | false |
| description | Audit skills, commands, and agents for agentic output compliance — optimization tables, bare CLI commands. Use when batch-checking skill documentation quality. |
| allowed-tools | Bash(find *), Bash(head *), Read, Grep, Glob, TodoWrite |
| args | [--fix] [--verbose] |
| argument-hint | [--fix] [--verbose] |
| name | health-agentic-audit |
/health:agentic-audit
Scan all plugin skills, commands, and agents for CLI output optimization opportunities. Checks for missing Agentic Optimizations tables, bare CLI commands without compact flags, and stale review dates.
Standards reference: .claude/rules/agentic-optimization.md and .claude/rules/skill-quality.md.
When to Use This Skill
| Use this skill when... | Use another approach when... |
|---|
| Auditing skills for agentic optimization compliance | General plugin audit (use /health:audit) |
| Finding missing Agentic Optimizations tables | Comprehensive environment check (use /health:check) |
| Reviewing CLI command patterns in skills | Plugin registry issues (use /health:plugins) |
| Quality-checking skill documentation | Manual skill review preferred |
| Batch-updating skill quality standards | Single skill needs updating |
Context
- Plugin root: !
pwd
- Skill files: !
find . -name 'SKILL.md' -o -name 'skill.md'
- Skill files (all): !
find . \( -name 'SKILL.md' -o -name 'skill.md' \)
- Agent files: !
find . -path '*/agents/*.md' -not -name 'README.md'
Parameters
| Parameter | Description |
|---|
--fix | Add skeleton Agentic Optimizations tables to flagged skills and update modified dates |
--verbose | Show all scanned files and detailed pattern matching results |
Execution
Execute this agentic output audit:
Step 1: Discover all plugin content files
Find all skills, commands, and agents in the codebase:
- Scan for skills:
find . -name 'SKILL.md' -o -name 'skill.md'
- Scan for all skill variants:
find . \( -name 'SKILL.md' -o -name 'skill.md' \)
- Scan for agents:
find . -path '*/agents/*.md' -not -name 'README.md'
Classify each file by type (skill, command, agent) for the report.