skill-developer
Meta-skill for creating and managing Claude Code skills
npx skills add parcadei/Continuous-Claude-v3 --skill skill-developer --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Skill Developer Meta-skill for creating new Claude Code skills, including skills that wrap MCP pipelines. ## When to Use - "Create a skill for X" - "Help me make a new skill" - "Turn this script into a skill" - "How do I create a skill?" ## Skill Structure Skills live in `.claude/skills/<skill-name>/`: ``` .claude/skills/my-skill/ ├── SKILL.md # Required: Main skill definition ├── scripts/ # Optional: Supporting scripts └── templates/ # Optional: Templates, examples ``` ### SKILL.md Format ```yaml --- name: skill-name description: Brief description (shown in skill list) allowed-tools: [Bash, Read, Write] # Optional: restrict tools --- # Skill Name ## When to Use [When Claude should discover this skill] ## Instructions [Step-by-step instructions for Claude to follow] ## Examples [Usage examples] ``` ## Creating an MCP Pipeline Skill To create a new MCP chain script and wrap it as a skill: ### Step 1: Use the Template Copy the multi-tool-pipeline template: ```bash cp $CLAUDE_PROJECT_DIR/scripts/multi_tool_pipeline.py $CLAUDE_PROJECT_DIR/scripts/my_pipeline.py ``` Reference the template pattern: ```bash cat $CLAUDE_PROJECT_DIR/.claude/skills/multi-tool-pipeline/SKILL.md cat $CLAUDE_
- When to Use
- Skill Structure
- SKILL.md Format
- Creating an MCP Pipeline Skill
- Step 1: Use the Template
- Step 2: Customize the Script
- Step 2: Create the Skill
- Step 3: Add Triggers (Optional)
- Reference Files
- Quick Checklist
- Examples in This Repo
cp $CLAUDE_PROJECT_DIR/scripts/multi_tool_pipeline.py $CLAUDE_PROJECT_DIR/scripts/my_pipeline.py cat $CLAUDE_PROJECT_DIR/.claude/skills/multi-tool-pipeline/SKILL.md cat $CLAUDE_PROJECT_DIR/scripts/multi_tool_pipeline.py cat $CLAUDE_PROJECT_DIR/.claude/rules/skill-development.md cat $CLAUDE_PROJECT_DIR/.claude/rules/mcp-scripts.md ls $CLAUDE_PROJECT_DIR/.claude/skills/ cat $CLAUDE_PROJECT_DIR/.claude/skills/commit/SKILL.md cat $CLAUDE_PROJECT_DIR/.claude/skills/firecrawl-scrape/SKILL.md
What does the skill-developer skill do?
Meta-skill for creating and managing Claude Code skills
How do I install it?
Run `npx skills add parcadei/Continuous-Claude-v3 --skill skill-developer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From parcadei/Continuous-Claude-v3, a repository with 3,879 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
