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

AgentRoom: Desktop app visualizes AI coding agents as pixel characters with session search
AgentRoom is a desktop app that turns Claude Code, Codex, and Gemini sessions into animated pixel characters in a virtual office, with full-text semantic search across all sessions. The repo includes a standalone Claude Code skill for searching past sessions from any conversation.

Slack Message Formatter: Fix Claude's Broken Markdown in Slack
A developer built a skill that converts Claude-generated Markdown to proper Slack formatting, solving issues where bold text shows as asterisks, links appear raw, and tables break. The tool offers both browser preview with rich HTML copy-paste and API webhook support.

Project Headroom: Netflix Engineer's Open Source Tool Slashes AI Token Costs by 90%
Netflix senior engineer Tejas Chopra created Project Headroom, an open source proxy that compresses AI context input by up to 90%, saving an estimated $700,000 across users since January 2026. It runs locally on port 8787 and wraps any LLM CLI.

Claude-rank: Claude Code Plugin for AI Search Visibility Audits
Claude-rank is a free Claude Code plugin and CLI that audits technical foundations for AI search visibility, handling technical SEO, AI citability scoring, crawlability checks for AI bots, and automated fixes for discoverability issues.