This repository is a scaffold for an Agent Skills library focused on JavaScript development.
It does not ship any concrete skills yet. Instead, it gives you a clean structure for adding them over time.
.
├── README.md
├── LICENSE
├── docs/
│ └── authoring.md
├── templates/
│ └── skill-template/
│ └── SKILL.md
└── skills/
- Create a new directory inside
skills/using a lowercase kebab-case name. - Copy
templates/skill-template/SKILL.mdinto that directory. - Update the
namefield so it exactly matches the directory name. - Replace the placeholder description with a specific trigger-oriented description.
- Fill in the instructions with the workflow you want agents to follow.
- Add optional
references/,scripts/, orassets/folders only when needed.
Example:
skills/
└── your-skill-name/
├── SKILL.md
├── references/
├── scripts/
└── assets/
- Keep skill names lowercase and hyphenated.
- Keep
SKILL.mdfocused and practical. - Put long reference material in
references/instead of bloatingSKILL.md. - Write descriptions so an agent can tell when to activate the skill.
- Prefer reusable workflows over product-specific prompts.
See docs/authoring.md for a fuller checklist.
The Agent Skills spec recommends validating each skill with skills-ref:
skills-ref validate ./skills/your-skill-nameSpec reference: https://agentskills.io/specification