by Ibrahim-3d
Multi-agent orchestration system for Claude Code with parallel execution, automated quality gates, Board of Directors, and bundled Superpowers skills
# Add to your Claude Code skills
git clone https://github.com/Ibrahim-3d/orchestrator-supaconductorGuides for using ai agents skills like orchestrator-supaconductor.
Last scanned: 5/27/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-27T08:05:26.101Z",
"semgrepRan": false,
"npmAuditRan": true,
"pipAuditRan": true
}orchestrator-supaconductor is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by Ibrahim-3d. Multi-agent orchestration system for Claude Code with parallel execution, automated quality gates, Board of Directors, and bundled Superpowers skills. It has 359 GitHub stars.
Yes. orchestrator-supaconductor passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/Ibrahim-3d/orchestrator-supaconductor" and add it to your Claude Code skills directory (see the Installation section above).
orchestrator-supaconductor is primarily written in Python. It is open-source under Ibrahim-3d on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh orchestrator-supaconductor against similar tools.
No comments yet. Be the first to share your thoughts!
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 < |