Claude Code Skill /council Runs Prompts Across 4 AI Models in Parallel

A developer has built a Claude Code skill called /council that sends any prompt to four frontier AI models simultaneously, then uses the least biased model to synthesize a winning response with specific improvements from the others.
How It Works
When you type /council followed by a prompt in Claude Code (for example: /council should I add a freemium tier?), the skill:
- Sends your prompt to GPT, Claude, Gemini, and Grok in parallel (takes about 7 seconds)
- Uses Gemini to synthesize the results: picks the best response and lists specific improvements it would "steal" from the other three models
- Shows all five outputs (four model responses plus the synthesis) inline and saves them to a file
Why Gemini Synthesizes
The creator chose Gemini as the synthesizer based on an LLMs-as-judges study that found:
- GPT has 70% self-preference when judging
- Claude is near-neutral (-0.83 percentage points bias)
- Gemini is the least biased (-2.08 percentage points bias)
Key Value: Winner + Delta Format
The real value comes from the "winner + delta" format. Instead of just saying "GPT's answer was best," the synthesis might say: "GPT wins, but steal the cost framing from Gemini and the architectural critique from Claude." This approach yields a better answer than any single model could produce alone.
In one test example shown in the source, Claude was the only model that identified a meta-failure — "you've added complexity without adding real safety" — while the other models only described symptoms. Claude described why the fix doesn't work.
The creator is asking other developers building multi-model Claude Code skills what workflows might benefit from getting four perspectives instead of one.
📖 Read the full source: r/ClaudeAI
👀 See Also

Benchmark: Gemma4 12B vs Qwen3 8B quantized on 24GB Mac Mini
A developer tested Gemma4 12B against Qwen3:8b-q4_K_M on a 24GB Mac Mini using two prompts. Qwen3 processed prompts 4-5x faster, while Gemma4 generated output slightly faster.

Aura Research: Local tool compiles documents into AI-navigable wiki with persistent memory
Aura Research is an open-source tool that processes raw documents (PDFs, papers, notes, code, 60+ formats) into a structured markdown wiki with backlinked articles, concept pages, and a master index. It compresses everything into a .aura archive optimized for RAG retrieval and runs 100% locally with no data leaving your machine.

Cowork AI Agent Causes Keyboard Input Issues on Windows Laptops
A user reported that Cowork AI agent caused persistent keyboard input problems on a Dell Latitude 9430, where only the first few keystrokes would register. The solution involved a specific embedded controller reset procedure for Latitude models.

Open-source Claude Code reimplementation patched for local model compatibility
A developer patched the open-source Claude Code reimplementation to work with Ollama and local models by removing hardcoded Anthropic client dependencies. The CLI now auto-detects providers from model names and environment variables.