Install
openclaw skills install skill-quality-auditAudit and quality-review AI agent skills (SKILL.md files) against established best practices from the Nevo Systems skill-writing framework. Checks trigger quality, structure (rigid vs flexible), conciseness, progressive disclosure, and common mistakes. Use when reviewing, auditing, or evaluating an existing skill, when a skill isn't performing well, when the user says "review this skill", "audit my skill", "check this SKILL.md", "skill quality check", or "/skill-review".
openclaw skills install skill-quality-auditAudit a SKILL.md file against the following quality dimensions. Report findings with severity (critical / warning / nit) and actionable fix suggestions.
Evaluate in order. Stop at critical findings — fix those first.
The description field in YAML frontmatter is the ONLY trigger mechanism.
It must answer three questions clearly:
Red flags:
Determine if the skill matches the right structural approach:
| Approach | Use When | Signs of Mismatch |
|---|---|---|
| Rigid | Fragile task, consistency critical, skipping steps = failure | Loose guidelines for DB migration |
| Flexible | Multiple valid approaches, requires judgment | Overly prescriptive for code review |
Decision rule: If the agent deviates from instructions, how much damage?
Check the three-level loading strategy:
Red flags:
references/skill1, my-skill, helper, utils → use descriptive, verb-led hyphen-case names.scripts/: Are they tested? Do they solve a repeatedly-rewritten problem?references/: Are they referenced from SKILL.md with clear "when to read" guidance?assets/: Are they output-oriented (templates, images), not documentation?If a test plan exists or can be inferred:
## Skill Review: [skill-name]
### Summary
[1-2 sentences: overall quality, primary issues]
### Findings
| # | Severity | Dimension | Issue | Fix |
|---|----------|-----------|-------|-----|
| 1 | critical | Trigger | ... | ... |
### Trigger Test
- ✅ Should trigger: ...
- ❌ Should NOT trigger: ...
### Score
- Trigger: X/10
- Structure: X/10
- Conciseness: X/10
- Progressive Disclosure: X/10
- Overall: X/10