claude-code-review-council
Multi-agent code review for Claude Code: parallel review by Codex (GPT-5.5), Gemini 3.1 Pro, and 4 Claude specialist subagents (security, performance, logic, regression)
A Claude Code plugin that runs six AI reviewers in parallel on your code diff, including models from OpenAI and Google alongside four Claude specialists, then merges their findings into a single deduplicated priority report.
This is a plugin for Claude Code, Anthropic's AI coding assistant, that adds a more thorough code review command. Instead of asking one AI model to look at your changes, it runs six reviewers at the same time and then combines their findings into a single report.
The six reviewers are: OpenAI's Codex CLI (using GPT-5.5 at its highest reasoning setting), Google's Gemini CLI (using Gemini 3.1 Pro), and four Claude specialist subagents each focused on a single concern: security, performance, logic, and regression risk. All six run in parallel, so the total wait time is roughly as long as the slowest reviewer, not the sum of all six. Each reviewer receives the same diff and the same context about what the change is supposed to do, which helps catch cases where the implementation does not match the stated intent.
After all six reports come in, a synthesis step combines them. It removes duplicate findings, checks each reported file and line number against the actual code to drop hallucinated citations, re-rates severity if a finding was over or under-stated, and flags places where reviewers disagreed. The result is a unified report organized by priority level. No code changes are made until the developer approves them.
The README explains why six reviewers help: different model families have predictable blind spots, and when models from different families agree on a finding, confidence in that finding is higher than when only one flagged it. If Codex or Gemini is unavailable due to quota limits or a network error, the four Claude specialists continue and complete the review on their own.
Installing requires the Codex and Gemini command-line tools to be set up separately. The plugin itself installs via the Claude Code plugin marketplace or by copying a folder. The README suggests using this for security-sensitive code, database migrations, and changes that would normally warrant a senior engineer's review, rather than for minor edits. The project is MIT-licensed.
Where it fits
- Run a multi-model code review on a security-sensitive change to get independent findings from OpenAI, Google, and four Claude specialists
- Review a database migration with the council to get the equivalent of a senior engineer sign-off from multiple AI perspectives
- Get a unified priority report from six reviewers where duplicate findings are removed and hallucinated file citations are verified against the actual diff
- Fall back to four Claude specialists automatically when Codex or Gemini CLI tools are unavailable due to quota or network issues