CLI tool to scaffold Claude orchestration workflows into your project
npm install claude-orchestrationCLI tool to scaffold Claude orchestration workflows into your project.
``bash`
npx claude-orchestration
This will create a .claude/ directory with workflow templates:
``
.claude/
orchestration.md
workflows/
react/
feature.md
bugfix.md
refactor.md
performance.md
review.md
pr.md
docs.md
1. Copies workflow templates to .claude/ in your projectCLAUDE.md
2. Appends orchestration reference to your (if it exists)
| Workflow | Use When |
|----------|----------|
| feature.md | Building new functionality |bugfix.md
| | Diagnosing and fixing bugs |refactor.md
| | Improving code without behavior changes |performance.md
| | Profiling and optimizing performance |review.md
| | Reviewing code for merge |pr.md
| | Generating PR title and description |docs.md` | Writing documentation |
|
The tool auto-detects React projects and routes to React-specific workflows with React 18 best practices.
MIT