Agent Skill
2/7/2026skill-creator
Create and initialize new Agent Skills following the agentskills.io standard. Use this when you need to modularize a new capability for the AI agent.
F
fullfran
2GitHub Stars
2Views
npx skills add FullFran/Hybrid-RAG-example
SKILL.md
| Name | skill-creator |
| Description | Create and initialize new Agent Skills following the agentskills.io standard. Use this when you need to modularize a new capability for the AI agent. |
name: skill-creator description: Create and initialize new Agent Skills following the agentskills.io standard. Use this when you need to modularize a new capability for the AI agent. license: MIT metadata: standard: agentskills.io version: "1.1"
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
---
name: <skill-name>
description: <Clear description of what it does and when to use it>
license: MIT
metadata:
author: <your-name>
version: "1.0"
---
Skills Info
Original Name:skill-creatorAuthor:fullfran
Download