name: skill-development-workflow description: Automate the initial setup of a new skill. Use when you want to create a new skill from scratch.
Skill Development Workflow
This skill automates the initial setup of a new skill, including creating the directory structure and validating it.
Quick Start
To create a new skill called my-new-skill, run:
/home/ubuntu/skills/skill-development-workflow/scripts/run_workflow.sh my-new-skill
The Workflow
This skill performs the following steps in order:
Initialize: Uses the
skill-creatorskill to create the directory structure for the new skill.Validate: Uses the
skill-creatorskill to validate that the new skill's structure is correct.Discover: The
skillzserver will automatically discover the new skill, making it available as an MCP tool.
What You Get
- A new skill directory created in
/home/ubuntu/skills/ - A validated skill structure
- The new skill is immediately available via the
skillzserver
Next Steps
After running the workflow, you need to:
- Edit the
SKILL.mdin your new skill's directory to describe what it does. - Add your scripts to the
scripts/directory. - Test your skill to make sure it works as expected.
Why This is a "Meta-Skill"
This skill is a "meta-skill" because it's a skill that helps you create other skills. It automates the repetitive parts of skill creation so you can focus on building the unique logic of your new skill.