skills-packaging-principles
Installation
SKILL.md
Skills Packaging Principles
Instructions
Use this skill when creating or refactoring Agent Skills so they remain discoverable and scalable as the skill library grows.
- Use progressive disclosure
- Put only
nameand a shortdescriptionin YAML frontmatter. - Keep
SKILL.mdfocused on actionable instructions. - Move long documentation into
references/so it’s only read when needed.
- Bundle supporting files
- Include any documents or scripts the skill needs in the same folder and reference them with relative links.
- Prefer a clear, navigable structure (e.g.,
templates/,examples/,references/,scripts/).
- Write cross-file pointers intentionally
- Put short “what to read next” links in
SKILL.mdrather than pasting everything inline.