Marketplace for The Council — a multi-model advisory board skill
npx claudepluginhub dantespeak85/the-councilMulti-model advisory board — get second opinions from Codex and Gemini
Parallel minds. Singular clarity.
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 |
Both advisors run in read-only mode and cannot modify your project:
--sandbox read-only--approval-mode planCreated by Tom Wolinitz with Claude Code
More projects at github.com/DantesPeak85
MIT