Skip to main content

skill-development-workflow

Automate the initial setup of a new skill. Use when you want to create a new skill from scratch.

Jump to install

Source facts

Repository
abcnuts/manus-skills
Last source activity
February 12, 2026 at 04:11
Detected SKILL.md language
English
Stars
69
Forks
46

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

File Explorer
2 files

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
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: ```bash /home/ubuntu/skills/skill-development-workflow/scripts/run_workflow.sh my-new-skill ``` ## The Workflow This skill performs the following steps in order: 1. **Initialize:** Uses the `skill-creator` skill to create the directory structure for the new skill. 2. **Validate:** Uses the `skill-creator` skill to validate that the new skill's structure is correct. 3. **Discover:** The `skillz` server 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 `skillz` server ## Next Steps After running the workflow, you need to: 1. **Edit the `SKILL.md`** in your new skill's directory to describe what it does. 2. **Add your scripts** to the `scripts/` directory. 3. **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.
View on GitHub