Skill Issue
š A Claude Code skill that audits all your other skills. HR department for AI agents.
Install / Use
/learn @krispuckett/Skill IssueQuality Score
Category
Development & EngineeringSupported Platforms
README
š skill-issue
An agent skill that audits all your other agent skills. HR department for AI agents.
Find the skill issues before they find you.
Name: Josh Puckett ā who immediately knew it had to be called
/skill-issueConcept: Benji Taylor ā "I need a skill that reviews all the other skills, figures out which ones are performing, and fires the rest."
What It Does
- Inventories every installed skill across your project
- Tracks usage by scanning recent logs for skill mentions
- Checks health ā verifies required binaries and environment variables
- Recommends action ā keep, update, review, or remove
Quick Start
git clone https://github.com/krispuckett/skill-issue.git
cd skill-issue
# Point it at your skills directory
SKILL_DIRS="../my-project/skills" node scripts/audit.mjs
That's it. Any directory containing subdirectories with SKILL.md files will be scanned.
Usage
Ask Your Agent
"Run a skill audit" "Check my skills for issues" "Do I have a skill issue?"
CLI
# Scan default ./skills directory
node scripts/audit.mjs
# Scan multiple directories
SKILL_DIRS="./skills,./other-skills" node scripts/audit.mjs
# Scan with usage tracking from your logs
SKILL_DIRS="./skills" MEMORY_DIR="./logs" node scripts/audit.mjs
Configuration
| Variable | Default | Description |
|----------|---------|-------------|
| SKILL_DIRS | ./skills | Comma-separated directories to scan |
| MEMORY_DIR | ./memory | Directory with dated markdown logs (YYYY-MM-DD.md) for usage tracking |
| AUDIT_DAYS | 7 | How far back to scan for usage |
| SKIP_HUB | false | Set to 1 to skip ClawdHub version checks |
What It Scans
The auditor looks for subdirectories containing a SKILL.md with YAML frontmatter:
skills/
āāā my-skill/
ā āāā SKILL.md
āāā another-skill/
ā āāā SKILL.md
SKILL.md Format
---
name: my-skill
description: "What this skill does"
metadata: {"requires":{"bins":["curl","jq"],"env":["API_KEY"]}}
---
If requires.bins lists CLI tools, the audit checks they're installed. If requires.env lists env vars, it checks they're set.
Sample Output
# š Skill Audit Report
## Summary
- Total skills: 12
- ā
Keep: 5 (active + healthy)
- š Review: 4 (unused ā maybe remove?)
- šļø Remove: 3 (broken dependencies)
## Detailed Report
| # | Skill | Bins | Usage (7d) | Health | Rec |
|---|-------------|----------|------------|--------|-----------|
| 1 | š¤ļø weather | curl | š 5 | ā
| ā
keep |
| 2 | š£ļø voice | sag | ā | ā sag | šļø remove |
| 3 | š§ email | himalaya | š 8 | ā
| ā
keep |
## ā ļø Skills Needing Attention
- **voice** ā šļø Missing: `sag` not found. Install or remove.
How It Works
- Scans
SKILL_DIRSfor subdirectories withSKILL.md - Parses YAML frontmatter for metadata
- Runs
whichon each required binary - Checks
process.envfor required variables - Scans dated
.mdfiles inMEMORY_DIRfor skill name mentions - Outputs a markdown report with per-skill recommendations
Read-only. Never modifies, installs, or removes anything.
Requirements
- Node.js 18+
License
MIT ā see LICENSE
Related Skills
node-connect
337.4kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
83.2kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
337.4kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
83.2kCommit, push, and open a PR
