What problem does it solve?
The Skill Development guide provides a standardized, reusable blueprint for creating Claude Code plugin skills. It clarifies how to structure SKILL.md, how to separate core instructions from deep references, and how to apply progressive disclosure to keep context lean while offering rich detail when needed. This description should be used when the user asks to "create a skill", "build a Claude Code skill", "define a skill structure", or "set up progressive disclosure".
Core Features & Use Cases
- Define a clear skill structure: SKILL.md with YAML frontmatter (name and description) plus a Markdown body that loads into context on activation.
- Organize resources: optional references/, scripts/, and assets/ directories to store guidance, utilities, and output-ready assets.
- Enforce progressive disclosure: core concepts load upfront, detailed patterns and API docs load on demand, and working examples load as needed.
- Facilitate plugin development workflow: provide templates, best practices, and example resource layouts to accelerate skill creation and quality.
Quick Start
Create a new skill directory under a plugin’s skills/, add SKILL.md with proper frontmatter, and populate optional references/, scripts/, and assets/ as needed.