Install
openclaw skills install skill-refinerAudit and fix all skills in the workspace for compliance with skill-creator requirements. Use when asked to "refine skills", "audit skills", "check skill qua...
openclaw skills install skill-refinerFinds every skill in the workspace, audits each against skill-creator requirements, and fixes non-compliant ones.
bash scripts/find_skills.sh [workspace_dir]
This searches the entire workspace for SKILL.md files (not just skills/). Skills created without following skill-creator conventions may end up anywhere.
python3 scripts/audit_skill.py <skill-dir>
Returns JSON with:
issues — blocking problems that must be fixedwarnings — advisory improvementscompliant — true only when issues is emptyRun this on every path returned by Step 1. Batch example:
bash scripts/find_skills.sh | while read dir; do
python3 scripts/audit_skill.py "$dir"
done
Summarize results in a table:
| Skill | Location | Issues | Warnings | Status |
|---|---|---|---|---|
| my-skill | skills/my-skill | 0 | 1 | ⚠️ |
| bad-skill | temp/bad-skill | 2 | 0 | ❌ |
For each skill with issues, fix in this order:
--- block with name and description onlyname and descriptionskills/, move it to ~/.openclaw/workspace/skills/<skill-name>/For warnings (advisory):
references/ files and link from SKILL.mdRe-run audit_skill.py on each fixed skill to confirm "compliant": true.
Optionally package with:
python3 /opt/homebrew/lib/node_modules/openclaw/skills/skill-creator/scripts/package_skill.py <skill-dir>
A compliant skill must have:
SKILL.md at the root of a named directoryname and description (no other fields)description includes what the skill does AND when to trigger itscripts/, references/, or assets/references/ files linked from SKILL.md body