template-skill
Installation
SKILL.md
Template Skill
This is a blueprint for creating new skills. Follow this folder structure and the guidelines in STRUCTURE.md.
Folder Layout
SKILL.md: Metadata and high-level instructions.scripts/: Implementation logic (Python/Node).resources/: Prompts, reference documents, or static data.examples/: Sample usage for the agent to learn from.tests/: Basic verification to ensure the skill works.
Guidelines
- Self-Documentation: Always keep
SKILL.mdupdated with the latest capabilities. - Utilities: Import from
../common/for logging and environment management. - Artifacts: Store temporary outputs in
artifacts/(don't commit these).