speckit-orchestrator
Execute the SpecKit pipeline (specify→clarify→plan→tasks→analyze→implement) for a feature. This skill assumes idea.md already exists and runs one pipeline step at a time, following idea.md as the source of truth. Use this after brainstorming is complete and idea.md has been created.
SKILL.md
| Name | speckit-orchestrator |
| Description | Execute the SpecKit pipeline (specify→clarify→plan→tasks→analyze→implement) for a feature. This skill assumes idea.md already exists and runs one pipeline step at a time, following idea.md as the source of truth. Use this after brainstorming is complete and idea.md has been created. |
Claude Code Skills Marketplace
Skills for Claude Code - structured feature development and plugin creation tools.
Quick Start
1. Add Marketplace
/plugin marketplace add https://github.com/lamtuanvu/claude-code-marketplace
2. Install Skills
# Install individual skill
/plugin install speckit-orchestrator@lamtuanvu-marketplace
/plugin install speckit-brainstorm@lamtuanvu-marketplace
/plugin install plugin-creator@lamtuanvu-marketplace
# Or install all skills
/plugin install-all lamtuanvu-marketplace
3. Use Skills
/speckit-brainstorm Add dark mode toggle
/speckit-orchestrator:execute
/plugin-creator
Available Skills
Plugin Creator
Create and develop Claude Code plugins with incremental component addition.
/plugin-creator
Features:
- Initialize new plugins with proper manifest structure
- Add skills, agents, commands, hooks, MCP servers, LSP servers
- Validate plugin structure
- Package for distribution
SpecKit Workflow
SpecKit is a structured feature development workflow:
brainstorm → specify → clarify → plan → tasks → analyze → implement
| Skill | Description |
|---|---|
| plugin-creator | Create and develop Claude Code plugins incrementally |
| speckit-brainstorm | Start here - explore ideas, define requirements, produce idea.md |
| speckit-orchestrator | Execute the pipeline one step at a time |
Workflow
-
Start with brainstorming:
/speckit-brainstorm <feature description>- Explores your feature idea
- Defines requirements
- Creates
idea.mdandorchestrator-state.json
-
Execute the pipeline:
/speckit-orchestrator:execute- Runs one step at a time
- Follows
idea.mdas source of truth - Progress: specify → clarify → plan → [plan-review] → tasks → analyze → implement
-
Check progress:
/speckit-orchestrator:status -
Reset to a step:
/speckit-orchestrator:rollback <step> -
Pause pipeline:
/speckit-orchestrator:cancel-pipeline
Skill Structure
skills/
└── development/
├── plugin-creator/
│ ├── SKILL.md
│ ├── scripts/
│ └── references/
├── speckit-brainstorm/
│ ├── SKILL.md
│ ├── scripts/
│ └── references/
└── speckit-orchestrator/
├── SKILL.md
├── scripts/
├── references/
└── assets/
Contributing
See CONTRIBUTING.md for how to add your skills.
License
Apache 2.0 - See LICENSE
Built with Claude Code