What problem does it solve? Building a well-structured AgentSkill requires knowing the SKILL.md frontmatter format, naming conventions, progressive disclosure patterns, and packaging rules. This Skill guides the entire lifecycle of creating, editing, validating, and packaging skills so they trigger correctly and stay context-efficient. ## Core Features & Use Cases - Skill Scaffolding: Run scripts/init_skill.py to generate a new skill directory with a SKILL.md template and optional scripts/, references/, and assets/ folders. - Design Guidance: Apply proven patterns for naming, frontmatter descriptions, progressive disclosure, and organizing resources into scripts, references, and assets. - Validation & Packaging: Use scripts/package_skill.py to validate frontmatter, naming, and structure, then produce a distributable .skill archive. - Use Case: You want to build a new pdf-editor skill. Initialize it with init_skill.py, write the SKILL.md following the guidance, add a rotate script, then package it into pdf-editor.skill for distribution. ## Quick Start Create a new skill named my-skill by running scripts/init_skill.py with the skill name and output path, then edit the generated SKILL.md and package it with scripts/package_skill.py.