Awesome-omni-skill skill-issue
Audit and review all installed agent skills. Run on-demand or via cron to get a health report: skill inventory, usage tracking, version checks, dependency health, and actionable recommendations (keep, update, review, remove). Use when asked to review skills, check for skill updates, find unused skills, or audit the skill ecosystem.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data-ai/skill-issue" ~/.claude/skills/diegosouzapw-awesome-omni-skill-skill-issue && rm -rf "$T"
manifest:
skills/data-ai/skill-issue/SKILL.mdsource content
Skill Issue — Skill Auditor
Audit all installed skills and produce a markdown report with recommendations.
Quick Start
# Basic — scans ./skills and ./memory node scripts/audit.mjs # Custom directories SKILL_DIRS="./skills,/path/to/more/skills" MEMORY_DIR="./memory" node scripts/audit.mjs # Save report node scripts/audit.mjs > /tmp/skill-audit-report.md
Environment Variables
| Variable | Default | Description |
|---|---|---|
| | Comma-separated skill directories to scan |
| | Dated markdown logs for usage tracking |
| | Days back to scan for usage |
What It Checks
- Inventory — Finds every subdirectory containing a
with YAML frontmatterSKILL.md - Usage — Scans recent memory/log files for skill name mentions
- Health — Verifies required binaries (
) and env vars (requires.bins
)requires.env - Versions — Checks ClawdHub registry if
CLI is availableclawdhub - Recommendations — keep (active+healthy), update (outdated), review (unused), remove (broken deps)
Safety
- Read-only — Never modifies, installs, or removes anything
- Advisory only — Recommendations require manual action