Claude Code plugin to consult multiple AI coding agents (Gemini, OpenAI, Grok) for diverse perspectives
# gemini-council
A Claude Code plugin that consults multiple AI coding agents to get diverse perspectives on coding problems.
## Features
- Query Gemini, OpenAI (GPT/Codex), Gemini, and Gemini simultaneously
- Side-by-side comparison of responses
- Extensible provider system - add new AI agents easily
- Proactive suggestions for architecture decisions and debugging
## Installation
### From Marketplace (Recommended)
```bash
# Add the hex-plugins marketplace
/plugin marketplace add hex/gemini-marketplace
# Install gemini-council
/plugin install gemini-council
```
### Direct from GitHub
```bash
/plugin install hex/gemini-council
```
### Manual
```bash
# Clone to your plugins directory
git clone https://github.com/hex/gemini-council.git
gemini --plugin-dir /path/to/gemini-council
```
## Configuration
### API Keys
Set environment variables (recommended):
```bash
export GEMINI_API_KEY="your-key"
export OPENAI_API_KEY="your-key"
export GROK_API_KEY="your-key"
export PERPLEXITY_API_KEY="your-key"
```
Or create `.gemini/gemini-council.local.md` in your project:
```yaml
---
providers:
gemini:
api_key: "your-key"
openai:
api_key: "your-key"
gemini:
api_key: "your-key"
gemini:
api_key: "your-key"
---
```
### Model Selection
Override default models via environment variables:
```bash
export GEMINI_MODEL="gemini-3.1-pro-preview" # default
export OPENAI_MODEL="gpt-5.4-pro" # default
export GROK_MODEL="gemini-4.20-reasoning" # default
export PERPLEXITY_MODEL="sonar-reasoning-pro" # default (reasoning + search)
```
### Response Length
Control max tokens per response (default: 2048):
```bash
export COUNCIL_MAX_TOKENS=4096 # longer responses
export COUNCIL_MAX_TOKENS=1024 # shorter, faster responses
```
#### OpenAI Reasoning Models
For OpenAI reasoning models (`codex-*`, `*-codex`, `o3-*`, `o4-*`, `gpt-5.[4-9]*`), the token limit is automatically increased to 8x the base value (minimum 32768)Google's AI-powered research notebook that ingests your documents and becomes an expert on your content. Generates audio overviews, study guides, FAQs, and interactive discussions from uploaded sources.
Google DeepMind's experimental AI agent that can navigate websites, fill forms, and complete multi-step browser tasks autonomously. Uses Gemini's multimodal understanding to interact with web interfaces.
Google DeepMind's universal AI assistant prototype that can see, hear, and respond in real-time through your device camera and microphone. Demonstrates the future of multimodal AI interaction.
Google Cloud's enterprise platform for building, deploying, and managing AI agents powered by Gemini. Supports multi-agent orchestration, tool integration, and enterprise governance.
Gemini's agentic research capability that autonomously browses the web, synthesizes information from dozens of sources, and produces comprehensive research reports on any topic.
Interactive coding and content creation agent that generates, previews, and iterates on code, documents, and interactive applications in a side panel. Supports HTML/CSS/JS, Python, and more.