Skill Creator
This skill guides the agent in creating a new Agent Skill following the official specification.
Process
- •Identify the Need: Determine the specific competence to modularize.
- •Naming: Choose a name (1-64 chars, lowercase alphanumeric and hyphens only).
- •Directory Structure:
- •Create
.agents/skills/<skill-name>/ - •(Optional)
.agents/skills/<skill-name>/scripts/for executable code. - •(Optional)
.agents/skills/<skill-name>/references/for deep documentation. - •(Optional)
.agents/skills/<skill-name>/assets/for templates and static files.
- •Create
- •Initialize SKILL.md:
- •MUST include YAML frontmatter with
nameanddescription. - •Name MUST match the directory name.
- •Description MUST be under 1024 characters.
- •MUST include YAML frontmatter with
- •Progressive Disclosure: Keep
SKILL.mdunder 500 lines. Move heavy technical details toreferences/. - •Sincronización Obligatoria: Una vez creada la skill, DEBES ejecutar
npm run syncpara actualizar la documentación global del proyecto enAGENTS.md.
Frontmatter Template
yaml
--- name: <skill-name> description: <Clear description of what it does and when to use it> license: MIT metadata: author: <your-name> version: "1.0" ---