Get a second opinion without leaving Claude Code.
Different AI models have different strengths and blind spots. Owlex lets you query Codex, Gemini, and OpenCode directly from Claude Code - and optionally run a structured deliberation where they review each other's answers before Claude synthesizes a final response.
- Round 1 - Your question goes to each agent independently. They answer without seeing each other.
- Round 2 - Each agent sees all Round 1 answers and can revise their position.
- Synthesis - Claude reviews everything and outputs a structured answer.
Use it for architecture decisions, debugging tricky issues, or when you want more confidence than a single model provides. Not for every question - for the ones that matter.
uv tool install git+https://github.com/agentic-mcp-tools/owlex.gitAdd to .mcp.json:
{
"mcpServers": {
"owlex": {
"command": "owlex-server"
}
}
}council_ask prompt="Should I use a monorepo or multiple repos for 5 microservices?"
Options:
claude_opinion- Share your initial thinking with agentsdeliberate- Enable Round 2 revision (default: true)critique- Agents critique each other instead of revisetimeout- Timeout per agent in seconds (default: 300)
| Tool | Description |
|---|---|
start_codex_session |
New Codex session |
resume_codex_session |
Resume with session ID or --last |
start_gemini_session |
New Gemini session |
resume_gemini_session |
Resume with index or latest |
Council runs in the background. Start a query, keep working, check results later.
| Tool | Description |
|---|---|
wait_for_task |
Block until task completes |
get_task_result |
Check result without blocking |
list_tasks |
List tasks with status filter |
cancel_task |
Kill running task |
| Variable | Default | Description |
|---|---|---|
COUNCIL_EXCLUDE_AGENTS |
`` | Skip agents (e.g., opencode,gemini) |
OWLEX_DEFAULT_TIMEOUT |
300 |
Timeout in seconds |
CODEX_BYPASS_APPROVALS |
false |
Bypass sandbox (use with caution) |
GEMINI_YOLO_MODE |
false |
Auto-approve Gemini actions |
OPENCODE_AGENT |
plan |
plan (read-only) or build |
- Codex and Gemini use your existing subscriptions (Claude Max, Google AI Pro, etc.)
- OpenCode uses API tokens
- Exclude agents with
COUNCIL_EXCLUDE_AGENTSto control costs - Use council for important decisions, not every question
| Agent | Strengths |
|---|---|
| Codex (gpt5.2-codex) | Deep reasoning, code review, bug finding |
| Gemini | 1M context window, multimodal, large codebases |
| OpenCode | Alternative perspective, configurable models |
| Claude | Complex multi-step implementation, synthesis |
