Tools
Orchestrix Starter
Orchestrix project scaffolding plugin for Claude Code, OpenClaw, and 30+ AI tools. Interactive project creation with multi-agent infrastructure.
README
# Orchestrix Starter
Interactive project scaffolding for [Orchestrix](https://orchestrix-mcp.youlidao.ai) โ the multi-agent development framework powered by Claude Code.
## What It Does
Run `/create-project` in Claude Code and it will:
1. **Ask** about your project (name, problem, users, tech stack, MVP scope)
2. **Confirm** understanding with a structured summary
3. **Create** a complete project skeleton with:
- `docs/project-brief.md` โ AI-generated project brief
- `.mcp.json` โ Orchestrix MCP Server connection
- `.claude/` โ Hooks, slash commands, and settings
- `.orchestrix-core/` โ Agent config and tmux automation
- `.gitignore` + initial git commit
## Installation
### Option 1: Claude Code Plugin (Recommended)
```bash
# In Claude Code
/plugin install dorayo/orchestrix-starter
```
### Option 2: Manual Installation
```bash
curl -fsSL https://raw.githubusercontent.com/dorayo/orchestrix-starter/main/scripts/install.sh | bash
```
### Option 3: ClawHub (OpenClaw)
```bash
clawhub install orchestrix-starter
```
## Usage
In any Claude Code session:
```
/create-project
```
Follow the interactive prompts. The skill will guide you through:
1. License Key setup
2. Project information gathering
3. Confirmation
4. Automated project creation
## Prerequisites
- [Claude Code](https://claude.ai/download) installed
- An Orchestrix License Key ([get one here](https://orchestrix-mcp.youlidao.ai))
- `git` and `bash` available in PATH
## What Gets Created
```
~/Codes/your-project/
โโโ docs/
โ โโโ project-brief.md # AI-generated project brief
โโโ .mcp.json # Orchestrix MCP Server config
โโโ .gitignore
โโโ .claude/
โ โโโ settings.local.json # Hook configuration
โ โโโ hooks/
โ โ โโโ handoff-detector.sh # Multi-agent handoff automation
โ โโโ commands/
โ โโโ o.md # /o agent activation
โ โโโ o-help.md # /o-help
โ โโโ o-status.md # /o-status
โโโ .orchestrix-core/
โโโ core-config.yaml # Project-specific config
โโโ scripts/
โโโ start-orchestrix.sh # tmux multi-window launcher
```
## After Project Creation
```bash
cd ~/Codes/your-project/
claude
```
Then follow the Orchestrix workflow:
| Step | Command | Purpose |
|------|---------|---------|
| 1 | `/o analyst` โ `*create-doc project-brief` | Deepen the project brief |
| 2 | `/o pm` โ `*create-doc prd` | Generate PRD from brief |
| 3 | `/o architect` โ `*create-doc architecture` | Design system architecture |
| 4 | `/o sm` โ `*create-story` | Break PRD into stories |
| 5 | `/o dev` โ `*develop-story S001` | Implement stories |
| 6 | `/o qa` โ `*review S001` | Review and test |
Or launch all agents in parallel with tmux:
```bash
bash .orchestrix-core/scripts/start-orchestrix.sh
```
## OpenClaw Integration
This skill is compatible with [OpenClaw](https://openclaw.ai) via ClawHub. OpenClaw can drive the entire Orchestrix workflow autonomously โ from project creation to development and testing.
See [OpenClaw + Orchestrix Guide](docs/openclaw-guide.md) for details.
## License
MIT
tools
Comments
Sign in to leave a comment