Install
openclaw skills install aptratcn-skill-health-monitorAutomated audits that score and report on skill health by checking structure, content, activity, compatibility, and discoverability to prevent failures.
openclaw skills install aptratcn-skill-health-monitorAutomated health checks for your agent skill collection
Audit, score, and maintain the health of your AI agent skills. Catch rotting skills, missing files, broken triggers, and outdated content before they cause silent failures.
| Score | Rating | Action |
|---|---|---|
| 90-100 | 🟢 Healthy | Maintain |
| 70-89 | 🟡 Needs Attention | Minor fixes |
| 50-69 | 🟠 Degrading | Schedule update |
| 0-49 | 🔴 Critical | Rewrite or retire |
# Check single skill directory
check-skill-health ./path/to/skill
# Scan entire skill collection
scan-skills ./skills/ --report=health-report.md
# Compare health over time
skill-health diff --baseline=health-report-2026-03.md --current=health-report-2026-04.md
Run this on each skill:
cat SKILL.md — Does it exist? Is the description clear?grep -r "TODO\|FIXME\|HACK" — Any technical debt markers?git log --since="30 days ago" --oneline — Any recent activity?grep -i "trigger\|when to use\|example" SKILL.md — Are triggers and examples defined?## Skill Health Report — 2026-04-22
### Summary
- Total skills: 16
- 🟢 Healthy: 8 (50%)
- 🟡 Needs Attention: 5 (31%)
- 🟠 Degrading: 2 (13%)
- 🔴 Critical: 1 (6%)
- Average score: 74/100
### Issues Found
1. **prompt-guard** (🔴 35/100) — Missing README, no trigger words
2. **evr-framework** (🟠 55/100) — SKILL.md only, no examples
3. ...
MIT