/board-review
The proposal, plan, or decision to review
> /plugin marketplace add Ibrahim-3d/orchestrator-supaconductor > /plugin install orchestrator-supaconductor@ibrahim-plugins
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/board-review
Context preview
What this command does when you run it.
The proposal, plan, or decision to review
Command definition
board-review.mdname: board-review
description: "Quick board review - get expert opinions from 5 directors without full deliberation"
model: opus
arguments:
- name: proposal
type: string
description: "The proposal, plan, or decision to review"
required: false
user_invocable: true/orchestrator-supaconductor:board-review — Quick Expert Assessment
Run a quick assessment from the 5-member Board of Directors. Each director provides their expert opinion in parallel, without the discussion phase.
Usage
/orchestrator-supaconductor:board-review [proposal or leave blank to review current track]
Workflow
1. **Load Proposal** — From argument or current track's plan.md 2. **Parallel Assessment** — All 5 directors evaluate simultaneously 3. **Aggregate Results** — Combine verdicts into summary
Directors
| Director | Domain | |----------|--------| | **CA** - Chief Architect | Technical design, scalability, patterns | | **CPO** - Chief Product Officer | User value, market fit, scope | | **CSO** - Chief Security Officer | Security, compliance, risk | | **COO** - Chief Operations Officer | Feasibility, timeline, resources | | **CXO** - Chief Experience Officer | UX/UI, accessibility, design |
Execution
// Dispatch all 5 directors in parallel
const assessments = await Promise.all([
Task({
subagent_type: "general-purpose",
description: "CA board assessment",
prompt: `You are the Chief Architect.
Proposal: ${proposal}
Follow .claude/skills/board-of-directors/directors/chief-architect.md
Output JSON assessment.`
}),
// ... CPO, CSO, COO, CXO
]);Output Format
## Quick Board Review
**Proposal**: [summary]
| Director | Verdict | Score | Top Concern |
|----------|---------|-------|-------------|
| CA | APPROVE | 8/10 | Query performance |
| CPO | APPROVE | 9/10 | None |
| CSO | CONCERNS | 6/10 | Rate limiting missing |
| COO | APPROVE | 7/10 | Timeline tight |
| CXO | APPROVE | 8/10 | Minor a11y issues |
**Quick Verdict**: 4-1 APPROVE with conditions
**Key Conditions**:
1. Add rate limiting (CSO)
2. Add query caching (CA)
Read more
name: board-review
description: "Quick board review - get expert opinions from 5 directors without full deliberation"
model: opus
arguments:
- name: proposal
type: string
description: "The proposal, plan, or decision to review"
required: false
user_invocable: true/orchestrator-supaconductor:board-review — Quick Expert Assessment
Run a quick assessment from the 5-member Board of Directors. Each director provides their expert opinion in parallel, without the discussion phase.
Usage
/orchestrator-supaconductor:board-review [proposal or leave blank to review current track]
Workflow
1. **Load Proposal** — From argument or current track's plan.md 2. **Parallel Assessment** — All 5 directors evaluate simultaneously 3. **Aggregate Results** — Combine verdicts into summary
Directors
| Director | Domain | |----------|--------| | **CA** - Chief Architect | Technical design, scalability, patterns | | **CPO** - Chief Product Officer | User value, market fit, scope | | **CSO** - Chief Security Officer | Security, compliance, risk | | **COO** - Chief Operations Officer | Feasibility, timeline, resources | | **CXO** - Chief Experience Officer | UX/UI, accessibility, design |
Execution
// Dispatch all 5 directors in parallel
const assessments = await Promise.all([
Task({
subagent_type: "general-purpose",
description: "CA board assessment",
prompt: `You are the Chief Architect.
Proposal: ${proposal}
Follow .claude/skills/board-of-directors/directors/chief-architect.md
Output JSON assessment.`
}),
// ... CPO, CSO, COO, CXO
]);Output Format
## Quick Board Review **Proposal**: [summary] | Director | Verdict | Score | Top Concern | |----------|---------|-------|-------------| | CA | APPROVE | 8/10 | Query performance | | CPO | APPROVE | 9/10 | None | | CSO | CONCERNS | 6/10 | Rate limiting missing | | COO | APPROVE | 7/10 | Timeline tight | | CXO | APPROVE | 8/10 | Minor a11y issues | **Quick Verdict**: 4-1 APPROVE with conditions **Key Conditions**: 1. Add rate limiting (CSO) 2. Add query caching (CA)
Multi-agent orchestration system for Claude Code with parallel execution, automated quality gates, Board of Directors, and bundled Superpowers skills
Repo: Ibrahim-3d/orchestrator-supaconductor
Other commands on orchestrator-supaconductor.
- /board-meeting
The proposal, plan, or decision to deliberate on
Open command - /brainstorm
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores requirements and design before implementation.
Open command - /brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores requirements and design before implementation.
Open command - /ceo
Your business question or topic to discuss
Open command - /close-track
Skip quality gate — use for abandoned or superseded tracks
Open command - /cmo
Your marketing question or topic to discuss
Open command

