Help us improve
Share bugs, ideas, or general feedback.
From health-plugin
Audits plugin skills, commands, and agents for agentic output optimization including missing compact/JSON flags, Agentic Optimizations tables, and stale review dates.
npx claudepluginhub laurigates/claude-plugins --plugin health-pluginHow this skill is triggered — by the user, by Claude, or both
Slash command
/health-plugin:health-agentic-auditsonnetThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
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.
Audits agents and skills across the plugin ecosystem for quality, consistency, and correct invocation configuration. Use after creating or modifying multiple skills.
Internal development tool that performs a comprehensive quality audit of all marketing skills and agents. Reviews description overlap, format consistency, feature adoption, and structural patterns. Use when the user says "audit skills", "skill quality review", "check skill health", "are my skills consistent", "monthly skill review", or before releasing a new version of the skills repo.
Runs parallel analyzers over plugin manifests, agents, skills, CLAUDE.md, docs, prompts, commands, and hooks; reports HIGH-certainty findings first and optionally applies safe fixes.
Share bugs, ideas, or general feedback.
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.
| 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 |
pwdfind . -name 'SKILL.md' -o -name 'skill.md'find . \( -name 'SKILL.md' -o -name 'skill.md' \)find . -path '*/agents/*.md' -not -name 'README.md'| 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 |
Execute this agentic output audit:
Find all skills, commands, and agents in the codebase:
find . -name 'SKILL.md' -o -name 'skill.md'find . \( -name 'SKILL.md' -o -name 'skill.md' \)find . -path '*/agents/*.md' -not -name 'README.md'Classify each file by type (skill, command, agent) for the report.
For each skill file:
## Agentic Optimization (with or without trailing "s")```bash or ```sh)Skip skills without any bash code blocks (informational skills). Note them in verbose mode.
Read execution and context sections of all files. Match commands against the bare CLI patterns in REFERENCE.md.
Search for these patterns inside fenced code blocks and backtick context commands (! backtick syntax).
For each file, extract the modified date from YAML frontmatter:
modified: YYYY-MM-DD from the first 20 linesmodified is older than 90 days as staleOutput a structured markdown report with these sections:
modified datesIf --verbose: also list all scanned files with their status (pass/fail per check).
When --fix is passed:
modified date in frontmatter of each modified file to today's datePrompt the user to fill in the TODO entries with actual optimized commands.
Match fenced code blocks to identify CLI tools:
```bash
<command>
And inline backtick commands in context sections:
<command>
### Frontmatter Extraction
Use the standard extraction pattern:
```bash
head -20 "$file" | grep -m1 "^modified:" | sed 's/^[^:]*:[[:space:]]*//'
| Context | Command |
|---|---|
| Agentic audit scan | /health:agentic-audit |
| Audit with auto-fix | /health:agentic-audit --fix |
| Verbose output | /health:agentic-audit --verbose |
| Find all skill files | find . \( -name 'SKILL.md' -o -name 'skill.md' \) 2>/dev/null |
| Check for Agentic Optimizations table | grep -l "## Agentic Optimizations" $(find . -name 'SKILL.md') 2>/dev/null |
/health:check - Full diagnostic scan/health:audit - Plugin relevance audit.claude/rules/agentic-optimization.md - Optimization standards.claude/rules/skill-quality.md - Required skill sections