Skip to main content

Three independent agents must vote PASS unanimously no 2/3 approvals.

Three independent agents vote on every phase gate. All three must return PASS — no 2/3 majority, no shortcuts, no skipped reviews.

3 Agents Found the Bug 1 Agent Missed

Three specialized agents — Lead (architecture), Alpha (correctness), Bravo (edge cases) — each start fresh and independently verify phase-gate work. All three must return PASS for the gate to open. 2/3 does not pass.

Built from catching a P2 streaming bug that single-agent review explicitly approved. Fix cycles re-validate against ALL agents, not just the failing one. Ships as a Claude Code plugin (5 slash commands, 3 agents, 1 skill, 1 hook) or as a pipx CLI for non-interactive CI — same prompts, same evidence schema.

Unanimous Gates

Lead + Alpha + Bravo all vote PASS or the phase doesn't ship. Any FAIL triggers a full re-validation on the next pass.

Independent Starts

Each agent begins with a fresh context. No shared findings leak between reviewers until the vote is cast.

Re-validate All After Fixes

A targeted fix does not get a narrow re-review. All three agents re-run, guarding against regression on previously-passing criteria.

Native Claude Code Integration

`/consensus-run`, `/consensus-validate`, `/consensus-roles`, `/consensus-report`, `/consensus-show-config` as first-class slash commands. Task-tool agents inherit your auth. State resumable via `.consensus/state.json` with `schema_version:1` forward-compat.

  1. 01claude plugin marketplace add krzemienski/multi-agent-consensus
  2. 02claude plugin install multi-agent-consensus@multi-agent-consensus
  3. 03Run /consensus-validate --phase audit --target <repo> as a 3-completion canary
  4. 04Run /consensus-run --target <repo> --phases audit,verify for the full pipeline (~24-30 completions)
  5. 05Alternative (pipx / CI): pipx install git+https://github.com/krzemienski/multi-agent-consensus.git
Unanimous-gate vote
All 3 must PASS
Lead reviewer (architecture)
Alpha reviewer (correctness)
Bravo reviewer (systems)
Only role with Bash
Independent fresh starts
No shared context until vote
Re-validate-all on fix
No narrow re-review
Plugin slash commands
5 commands shipped
pipx CI channel
Non-interactive mode
Documentation
GitHub README
github.com/krzemienski/multi-agent-consensus#readme
  1. Plugin conversion (5 commands, 3 agents, 1 skill, 1 hook); pipx remains as CI channel.
  2. Initial release of the unanimous-gate three-reviewer protocol.