By DantesPeak85
Multi-model advisory board — get second opinions from Codex and Gemini
Parallel minds. Singular clarity.
Security advisory (2026-05-25): Versions 1.2.0 and 1.2.1 do NOT enforce read-only on the Gemini advisor as their docs claim —
agy's--dangerously-skip-permissionsauto-approves tool calls rather than withholding them, and a 2026-05-24 incident saw agy ghost-write 8 files into a project directory. Upgrade to 1.3.0 or later for real OS-level sandbox enforcement (sandbox-execon macOS) and a pre/post-invocation diff safety net. See SKILL.md → Permissions and Safety for the full incident note.
A Claude Code skill that convenes OpenAI Codex and Google Gemini as an advisory board. Both run in parallel via their CLIs, with full project context, and return independent analyses that Claude synthesizes into a unified recommendation.
When you say "ask the council" or request a second opinion, Claude:
Both advisors run at maximum capability (Codex with xhigh reasoning effort, Gemini with HIGH thinking level) and have full codebase access in read-only mode.
After each council session, Claude reflects on what the advisors revealed — gaps, blind spots, or better approaches — and generalizes those learnings into CLAUDE.md and AGENTS.md. This means future sessions in the same repository start with lessons from previous council deliberations already loaded.
/plugin marketplace add DantesPeak85/the-council
/plugin install the-council@the-council-marketplace
Clone this repo and register it as a local plugin in your Claude Code configuration.
You need at least one of these CLIs installed and authenticated:
npm i -g @openai/codex
codex auth
npm i -g @google/gemini-cli
gemini # Authenticates via OAuth on first run
Enable experimental plan mode in ~/.gemini/settings.json:
{ "experimental": { "plan": true } }
The Council runs a preflight check on first invocation. If only one CLI is available, it operates in single-advisor mode and notes this in the synthesis. If neither is available, it shows installation instructions.
Just tell Claude:
The council is also invoked proactively during high-stakes architectural decisions or security-sensitive code reviews.
For maximum advisor capability:
Codex (~/.codex/config.toml):
model_reasoning_effort = "xhigh"
Gemini (~/.gemini/settings.json):
{
"modelConfigs": {
"customAliases": {
"council": {
"modelConfig": {
"model": "gemini-3-pro-preview",
"generateContentConfig": {
"thinkingConfig": { "thinkingLevel": "HIGH" }
}
}
}
}
}
}
| Variable | Default | Description |
|---|---|---|
CODEX_MODEL | auto (CLI default) | Model for Codex advisor |
GEMINI_MODEL | gemini-3-pro-preview | Model for Gemini advisor |
COUNCIL_TIMEOUT | 300 | Max seconds per advisor |
GEMINI_MAX_TURNS | 50 | Max Gemini session turns |
Both advisors run in read-only mode and cannot modify your project:
--sandbox read-only--approval-mode plan + --policy deny list (write/execute tools removed from model memory)Created by Tom Wolinitz with Claude Code
More projects at github.com/DantesPeak85
MIT
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub dantespeak85/the-council --plugin the-councilMulti-agent deliberation for AI coding assistants
Multi-model consensus engine integrating OpenAI Codex CLI, Gemini CLI, and Claude CLI for collaborative code review and problem-solving.
Delegate tasks to Codex, Gemini, and OpenCode AI agents via Owlex MCP
Use when you want a delegated second opinion or implementation from GPT (Codex), Gemini, Grok (xAI), or OpenRouter (config-driven, 400+ models) - seven expert subagents (Architect, Plan Reviewer, Scope Analyst, Code Reviewer, Security Analyst, Researcher, Debugger) and bundled ask-gpt/ask-gemini/ask-grok/ask-openrouter/ask-all/consensus commands, advisory (read-only) or implementation (write; Grok and OpenRouter are advisory-only).
Consult multiple AI coding agents (Gemini, OpenAI, Grok, Perplexity, plus codex and gemini CLIs when installed) to get diverse perspectives on coding problems
Consult external AIs (Gemini 2.5 Pro, OpenAI Codex, Claude) for second opinions. Use for debugging failures, architectural decisions, security validation, or need fresh perspective with synthesis.