What problem does it solve?
This Skill provides a standardized blueprint for creating self-contained Claude Skills, ensuring every new skill has a clear entry point (SKILL.md) and a consistent structure that can be discovered, loaded, and extended reliably.
Core Features & Use Cases
- Standardized skill entry with YAML frontmatter (name and description) and a Markdown body loaded after activation.
- Optional resource directories (scripts/, references/, assets/) for deterministic tasks, in-depth information, and output resources.
- Clear design patterns for progressive disclosure and modular reuse, enabling teams to build, share, and evolve Claude capabilities efficiently.
Quick Start
Run the skill initialization tool to scaffold a new skill, then customize SKILL.md and add any needed resources. Example: scripts/init_skill.py my-skill --path ./skills; edit my-skill/SKILL.md to describe the skill and usage; add files under scripts/, references/, and assets/ as needed.