From 8f40d48aba99751bc60ab45a3187835a8f5e2fee Mon Sep 17 00:00:00 2001 From: Ibrahim Elsayed Date: Wed, 18 Feb 2026 07:28:33 +0200 Subject: [PATCH] Add conductor-orchestrator-superpowers plugin Multi-agent orchestration with Evaluate-Loop, parallel execution, Board of Directors, 42 skills, 22 commands, and 16 agents. One command (/go) handles the full development lifecycle. --- README.md | 1 + .../.claude-plugin/plugin.json | 11 +++++ .../agents/conductor-orchestrator.md | 46 +++++++++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 plugins/conductor-orchestrator-superpowers/.claude-plugin/plugin.json create mode 100644 plugins/conductor-orchestrator-superpowers/agents/conductor-orchestrator.md diff --git a/README.md b/README.md index e4de615..f065933 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,7 @@ Install or disable them dynamically with the `/plugin` command — enabling you - [angelos-symbo](./plugins/angelos-symbo) - [ceo-quality-controller-agent](./plugins/ceo-quality-controller-agent) - [claude-desktop-extension](./plugins/claude-desktop-extension) +- [conductor-orchestrator-superpowers](./plugins/conductor-orchestrator-superpowers) - [lyra](./plugins/lyra) - [model-context-protocol-mcp-expert](./plugins/model-context-protocol-mcp-expert) - [problem-solver-specialist](./plugins/problem-solver-specialist) diff --git a/plugins/conductor-orchestrator-superpowers/.claude-plugin/plugin.json b/plugins/conductor-orchestrator-superpowers/.claude-plugin/plugin.json new file mode 100644 index 0000000..a51d678 --- /dev/null +++ b/plugins/conductor-orchestrator-superpowers/.claude-plugin/plugin.json @@ -0,0 +1,11 @@ +{ + "name": "conductor-orchestrator-superpowers", + "description": "Multi-agent orchestration with Evaluate-Loop, parallel execution, Board of Directors, and bundled Superpowers skills for Claude Code", + "version": "3.2.0", + "author": { + "name": "Ibrahim", + "url": "https://github.com/Ibrahim-3d" + }, + "homepage": "https://github.com/Ibrahim-3d/conductor-orchestrator-superpowers", + "repository": "https://github.com/Ibrahim-3d/conductor-orchestrator-superpowers" +} diff --git a/plugins/conductor-orchestrator-superpowers/agents/conductor-orchestrator.md b/plugins/conductor-orchestrator-superpowers/agents/conductor-orchestrator.md new file mode 100644 index 0000000..582e173 --- /dev/null +++ b/plugins/conductor-orchestrator-superpowers/agents/conductor-orchestrator.md @@ -0,0 +1,46 @@ +--- +name: conductor-orchestrator +description: "Master coordinator for the Evaluate-Loop. Dispatches specialized sub-agents, monitors progress, and manages workflow state." +--- + +# Conductor Orchestrator + +Multi-agent orchestration system for Claude Code with parallel execution, automated quality gates, and a 5-member Board of Directors. + +## What It Does + +One command (`/go`) handles the full development lifecycle: + +1. Creates a specification from your goal +2. Generates a dependency-aware execution plan (DAG) +3. Evaluates the plan for scope, overlap, and feasibility +4. Executes tasks in parallel where possible +5. Evaluates results (code quality, UI/UX, integrations, business logic) +6. Fixes any issues automatically +7. Reports completion + +## Components + +- **16 Agents** — Orchestrator, loop agents, board directors, executive advisors, workers +- **42 Skills** — Planning, execution, evaluation, debugging, TDD, code review +- **22 Commands** — `/go`, `/conductor:implement`, `/board-meeting`, `/cto-advisor`, and more +- **4 Evaluators** — UI/UX, Code Quality, Integration, Business Logic +- **5 Board of Directors** — Chief Architect, CPO, CSO, COO, CXO + +## Installation + +```bash +git clone https://github.com/Ibrahim-3d/conductor-orchestrator-superpowers.git ~/.claude/plugins/conductor-orchestrator-superpowers +``` + +## Usage + +```bash +/go Add user authentication with OAuth +/go Fix the login bug where users get logged out after refresh +/go Build a dashboard with real-time analytics charts +``` + +Bundles [superpowers](https://github.com/obra/superpowers) v4.3.0 (MIT). + +For full documentation, see the [GitHub repository](https://github.com/Ibrahim-3d/conductor-orchestrator-superpowers).