| name | review-skill |
| description | Review new skills for claude-skills-library standards. Use when adding new skills to verify they meet quality and structure requirements. |
Skill Review Checklist
Review new skills before adding to the library.
File Structure Check
| Required | File | Purpose |
|---|
| ✅ | skill.md | Main skill file (lowercase!) |
| ⚠️ | SETUP.md | Setup guide (if skill needs API/config) |
| ⚠️ | scripts/ | Helper scripts (if needed) |
| ⚠️ | .env.example | Example env file (never actual credentials!) |
skill.md Requirements
Frontmatter (YAML header)
---
name: skill-name
description: "..."
setup: "./SETUP.md"
enhancedBy:
- other-skill: "Benefit description. Without it: fallback behavior"
usedBy:
- parent-skill
---
Content Guidelines
- Concise - Under 100 lines ideal, max 150
- Workflow focused - How to use, not how to set up
- Examples - Quick command examples
- No setup instructions - Those go in SETUP.md
SETUP.md Requirements (if needed)
- Step-by-step setup guide
- API/account creation instructions
- Credential configuration (.env)
- Test commands to verify setup
- Troubleshooting table
Docs Site Sync
After adding a skill, update docs/index.html:
- Add skill card in
skills-grid section
- If skill has
enhancedBy, add the combo badge:
<div class="skill-combo" style="...">
<span style="color: var(--green-primary);">🔗 עובד טוב יותר עם:</span>
<span style="color: var(--text-secondary);">skill-a, skill-b</span>
</div>
- Create
docs/skills/[skill-name].html guide page
- Create
docs/downloads/[skill-name].zip for download
Review Checklist
Before approving a new skill:
Quality Standards
Good Descriptions (trigger phrases)
description: "Send WhatsApp messages. Use when user says 'send message', 'whatsapp', 'הודעה'."
description: "WhatsApp integration"
Good enhancedBy Format
enhancedBy:
- get-contact: "Auto-lookup contact by name. Without it: ask user for phone directly"
enhancedBy:
- get-contact
Command
Run review on a skill folder:
ls -la skills/[skill-name]/
head -20 skills/[skill-name]/skill.md
wc -l skills/[skill-name]/skill.md