What problem does it solve?
This skill provides a scaffolding framework to create, validate, and package distributable .skill packages using a standard set of scripts and resources.
Core Features & Use Cases
- Init: generate a new skill scaffold with SKILL.md and template resources.
- Validate: quick_validate checks frontmatter, structure, and directory layout.
- Package: package_skill creates a .skill archive from a complete skill directory.
- Resources: Supports scripts/, references/, and assets/ directories to organize operational tools, documentation, and templates.
Quick Start
To get started, follow these steps:
- Create a new skill scaffold:
python scripts/init_skill.py <skill-name> --path <path>
- Validate the created skill:
python scripts/quick_validate.py <path-to-skill>
- Package the skill into a .skill file:
python scripts/package_skill.py <path-to-skill> [output-directory]