Multi-agent orchestration system for Claude Code with parallel execution, automated quality gates, Board of Directors, and bundled Superpowers skills
> /plugin marketplace add Ibrahim-3d/orchestrator-supaconductor> /plugin install orchestrator-supaconductor@ibrahim-plugins
Repo: Ibrahim-3d/orchestrator-supaconductor
What's inside
plan.md checkboxes are now treated as the source of truth. Prevents already-completed tasks from being re-executed after a crash.fcntl OS-level locking on a dedicated mutex file.You tell Claude Code what you want. SupaConductor figures out how to build it — step by step, with quality checks at every stage.
Without SupaConductor, you prompt Claude Code and hope for the best. You manually review, re-prompt, and fix what it misses.
With SupaConductor, you type one command:
/orchestrator-supaconductor:go Add user authentication with Google OAuth
And it automatically:
No babysitting. No re-prompting. Just describe what you want and walk away.
| Component | Count | What It Does |
|---|---|---|
| Commands | 36 | Slash commands you type to control everything |
| Skills | 39 | Specialized knowledge modules that activate when needed |
| Agents | 15 | Autonomous workers that handle planning, coding, and evaluation |
| Evaluators | 4 | Quality checkers for UI/UX, code quality, integrations, and business logic |
| Board of Directors | 5 | Virtual executives who deliberate on major decisions |
| Lead Engineers | 4 | Architecture, Product, Tech, and QA specialists |
Bundles Superpowers v4.3.0 (MIT) — everything works out of the box with zero setup.
Open Claude Code and run:
/install Ibrahim-3d/orchestrator-supaconductor
git clone https://github.com/Ibrahim-3d/orchestrator-supaconductor.git ~/.claude/plugins/orchestrator-supaconductor
Download the latest release and extract it to ~/.claude/plugins/orchestrator-supaconductor/.
Start a new Claude Code session and type /orchestrator-supaconductor:. You should see a list of commands appear. If you see /orchestrator-supaconductor:go, you're all set.
Open Claude Code in your project folder and run:
/orchestrator-supaconductor:setup
This walks you through an interactive setup that:
conductor/ folder in your project to track all workYou only need to do this once per project.
Tell it what you want in plain English:
/orchestrator-supaconductor:go Add Stripe payment integration with webhooks
/orchestrator-supaconductor:go Fix the login bug where users get logged out after refresh
/orchestrator-supaconductor:go Build a dashboard with real-time analytics charts
/orchestrator-supaconductor:go Refactor the database layer to use connection pooling
That's it. SupaConductor takes over from here — planning, coding, testing, and evaluating the work automatically.
/orchestrator-supaconductor:status
Shows all your active tracks, what step each one is on, and what's completed.
If a session ends before a track completes, just run:
/orchestrator-supaconductor:go
It picks up exactly where it left off.
Every piece of work follows a structured cycle called the Evaluate-Loop:
| Step | What Happens |
|---|---|
| Plan | Breaks your goal into tasks with a dependency graph |
| Evaluate Plan | Checks for scope issues, overlap with other work, and feasibility |
| Execute | Writes code, runs tests, tracks progress — parallel when possible |
| Evaluate Execution | Specialized checkers review UI/UX, code quality, integrations, and business logic |
| Fix | Addresses any failures, then loops back to evaluation (up to 5 fix cycles; up to 3 plan revisions) |
| Complete | All checks pass — track is marked done |
The loop runs fully automated. It stops when the work passes all quality checks or when it needs your input.
When tasks don't depend on each other, they run simultaneously:
This means a feature with 6 tasks might only take as long as 3, because independent tasks run in parallel.
SupaConductor can work in two ways:
| Mode | Behavior | Best For |
|---|---|---|
| Agentic (default) | Fully autonomous — makes all decisions itself | Experienced users who trust the system |
| Human-in-the-loop | Pauses at key decision points to ask you | Learning the system, critical work, or when you want more control |
Switch modes by editing conductor/config.json in your project:
{ "mode": "agentic" }
{ "mode": "human-in-the-loop" }
For major decisions — and automatically for high-stakes tracks like production deploys, security architecture changes, breaking API migrations, or data-loss operations — a virtual board deliberates with written rationale:
| Director | Focus |
|---|---|
| Chief Architect | System design, scalability, technical debt |
| Chief Product Officer | User value, market fit, feature scope |
| Chief Security Officer | Vulnerabilities, compliance, data protection |
| Chief Operations Officer | Feasibility, timelines, deployment risks |
| Chief Experience Officer | UX/UI, accessibility, user journeys |
Each director independently assesses your question, then they discuss and vote with written rationale.
/orchestrator-supaconductor:board-meeting Should we migrate from REST to GraphQL?
/orchestrator-supaconductor:board-review Add real-time notifications via WebSocket
Use board-meeting for full deliberation (detailed, takes longer) or board-review for quick assessments.
| Command | What It Does |
|---|---|
/orchestrator-supaconductor:go <goal> | Describe what you want — everything else is automatic |
/orchestrator-supaconductor:setup | Set up SupaConductor in your project (run once) |
/orchestrator-supaconductor:status | See all your tracks and their progress |
/orchestrator-supaconductor:implement | Continue the Evaluate-Loop on the current track |
/orchestrator-supaconductor:new-track | Create a new track with more manual control |
| Command | What It Does |
|---|---|
/orchestrator-supaconductor:phase-review | Run a quality gate on completed work |
/orchestrator-supaconductor:cto-advisor | Get a CTO-level architecture review |
/orchestrator-supaconductor:board-meeting <topic> | Full board deliberation with voting |
/orchestrator-supaconductor:board-review <topic> | Quick board assessment |
/orchestrator-supaconductor:ui-audit | Accessibility and UI/UX review |
Ask for advice from virtual executives — they analyze your project and give guidance:
| Command | Advisor |
|---|---|
/orchestrator-supaconductor:ceo | Business strategy and product direction |
/orchestrator-supaconductor:cmo | Marketing strategy and positioning |
/orchestrator-supaconductor:cto | Technical architecture and engineering |
/orchestrator-supaconductor:ux-designer | User experience and design |
| Command | What It Does |
|---|---|
/orchestrator-supaconductor:writing-plans | Create a structured implementation plan |
/orchestrator-supaconductor:executing-plans | Execute an existing plan step by step |
/orchestrator-supaconductor:brainstorming | Creative exploration before building |
/orchestrator-supaconductor:systematic-debugging | Structured approach to finding and fixing bugs |
/orchestrator-supaconductor:using-git-worktrees | Isolate feature work in separate git worktrees |
/orchestrator-supaconductor:finishing-a-development-branch | Wrap up a branch — merge, PR, or cleanup |
These give you fine-grained control over individual loop steps:
| Command | Step |
|---|---|
/orchestrator-supaconductor:loop-planner | Run just the planning step |
/orchestrator-supaconductor:loop-plan-evaluator | Evaluate just the plan |
/orchestrator-supaconductor:loop-executor | Run just the execution step |
/orchestrator-supaconductor:loop-execution-evaluator | Evaluate just the execution |
/orchestrator-supaconductor:loop-fixer | Run just the fix step |
/orchestrator-supaconductor:parallel-dispatcher | Dispatch parallel workers manually |
/orchestrator-supaconductor:task-worker | Run a single task from the plan |
FAQ
orchestrator-supaconductor is a Claude Code plugin with 42 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes agent-factory, board-of-directors, brainstorming. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
Is this plugin yours?
Claim it with GitHubSubmit a pluginPromote it