| name | skill-creator |
| description | Create new skills, modify and improve existing skills. Use when users want to create a skill from scratch, edit, or optimize an existing skill. Triggers: "create skill", "new skill", "add skill", "skill template".
|
| category | meta |
Skill: skill-creator
Commands
ls -la .agents/skills/*/SKILL.md
ls -d .agents/skills/*/ | wc -l
grep -rL "^---" .agents/skills/*/SKILL.md
Skill Structure
Each skill lives in .agents/skills/<name>/SKILL.md with YAML frontmatter:
---
name: <skill-name>
description: >
What this skill does and when to trigger it.
category: web-ui
---
Creating a New Skill
- Create directory:
.agents/skills/<name>/
- Create
SKILL.md with frontmatter
- Add to
.agents/skills/SKILLS.md index
- Test the skill with a real task
Rules
- Max 500 LOC per SKILL.md
- Include: What, When, How, Commands, Rules
- Use concrete examples
- Reference other skills when relevant