Help us improve
Share bugs, ideas, or general feedback.
Multi-Agent Orchestration System for Claude Code
npx claudepluginhub twofoldtech-dakota/ORCAutonomous multi-agent system that transforms goals into tested implementations through Epic/Feature/Story hierarchy with quality gates
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
One prompt. Nineteen agents. Production-ready code.
/plugin marketplace add twofoldtech-dakota/ORC
Installation • Quick Start • Commands • Architecture • Documentation
ORC transforms high-level goals into complete, tested implementations. You describe what you want; ORC handles decomposition, implementation, validation, and learning—autonomously.
"Build a user authentication system with email verification"
↓
┌─────────────────────────────────────────────────────────┐
│ ANALYZE → PLAN → EXECUTE → VALIDATE → REVIEW → LEARN │
└─────────────────────────────────────────────────────────┘
↓
✓ 3 Epics, 9 Features, 27 Stories completed
✓ 94 tests passing
✓ Patterns extracted for future use
Claude Code CLI installed and authenticated.
# Verify Claude Code is installed
claude --version
Start Claude Code and run these commands:
# Add the ORC marketplace
/plugin marketplace add twofoldtech-dakota/ORC
# Install the plugin
/plugin install orc@orc-marketplace
Or use interactive discovery:
/plugin discover
/orc:status
Expected output:
📊 ORC Status
No active session.
Run /orc:plan <goal> to start.
# Update the marketplace
/plugin marketplace update orc-marketplace
# Uninstall
/plugin uninstall orc@orc-marketplace
Navigate to your project and invoke ORC with a goal:
cd your-project
# Start Claude Code
claude
# Plan and execute a feature
> /orc:plan "Add user authentication with JWT tokens"
ORC will:
You: /orc:plan "Build a REST API with user management"
ORC: 🔍 Analyzing Codebase... ✓
Project: typescript (express, prisma)
Patterns: repository, zod validation
📋 Plan Created: Build a REST API with user management
Epics (2):
E1: User Authentication [3 features, 9 stories]
├─ F1: User Registration (3 stories)
├─ F2: User Login (3 stories)
└─ F3: Password Reset (3 stories)
E2: User Management [2 features, 6 stories]
├─ F1: Profile Management (3 stories)
└─ F2: Account Settings (3 stories)
Total: 5 features, 15 stories
Codebase alignment: 94%
Run /orc:approve to proceed
You: /orc:approve
ORC: ✓ Plan approved. Run /orc:run to execute.
You: /orc:run
ORC: 🚀 Starting execution...
[E1-F1-S1] Creating User model with password hashing
├─ REASON: Loading pattern sp_bcrypt_001
├─ ACT: Creating src/models/User.ts
├─ ACT: Creating src/models/User.test.ts
├─ VERIFY: ✓ Tests pass (4/4)
└─ COMPLETE ✓ [8.2s]
... (continues autonomously) ...
[EXECUTION COMPLETE]
├─ Stories: 15/15 completed
├─ Tests: 47 passing
└─ Patterns learned: 3 new
| Command | Description | Example |
|---|---|---|
/orc:analyze | Profile codebase conventions and patterns | /orc:analyze --focus security |
/orc:plan <goal> | Create Epic → Feature → Story hierarchy | /orc:plan "Add payments" |
/orc:show | Display plan summary | /orc:show E1 |
/orc:approve | Approve plan for execution | /orc:approve E1 |
/orc:run | Execute approved epics | /orc:run E1 |
/orc:next | Execute next epic only | /orc:next |
/orc:stop | Gracefully pause execution | /orc:stop |
/orc:resume | Continue from checkpoint | /orc:resume |
/orc:retry <id> | Retry a blocked story | /orc:retry E1-F2-S3 |
/orc:patterns | Show learned patterns | /orc:patterns auth |
/orc:learn | Force pattern extraction | /orc:learn |
/orc:status | Show current state | /orc:status |
/orc:clear | Reset plan and state | /orc:clear |