Multi-LLM collaborative brainstorming and planning. Use when user explicitly requests consultation with multiple AI models (ChatGPT, Gemini, other LLMs) before presenting an implementation plan, or asks to "consult the council", "ask other models", or "get perspectives from other AIs". Queries external LLM APIs, synthesizes their perspectives, and presents an adapted implementation plan.
npx skills add https://github.com/gcpdev/llm-council-skill --skill llm-council
Consult multiple AI models (ChatGPT and Gemini) for their perspectives before presenting implementation plans to users.
When user requests consultation with other AI models, use phrases like:
Process:
scripts/query_llms.py with the user's prompt to get perspectives from both ChatGPT and GeminiThe skill requires API keys and optional model configuration stored in a .env file in the working directory:
OPENAI_API_KEY=sk-...
GEMINI_API_KEY=...
# Optional: Specify which models to use (defaults shown below)
OPENAI_MODEL=gpt-5-nano
GEMINI_MODEL=gemini-3-flash-preview
Default Models:
gpt-5-nano (fastest, most cost-efficient - $0.05/1M input, $0.40/1M output)gemini-3-flash-preview (balanced speed and intelligence)Upgrade Options for Better Collaboration:
*OpenAI models (ordered by capability and cost):*
gpt-5-nano - Fastest, most cost-efficient ($0.05/1M in, $0.40/1M out) - DEFAULTgpt-5-mini - Faster, cost-efficient for well-defined tasks ($0.25/1M in, $2.00/1M out)gpt-5.2 - Best for coding and agentic tasks ($1.75/1M in, $14.00/1M out)gpt-5.2-pro - Smarter, more precise for complex problems ($21.00/1M in, $168.00/1M out)All models support reasoning tokens, 400K context window, and image input.
*Gemini models (ordered by capability):*
gemini-2.5-flash-lite - Ultra-fast, optimized for throughputgemini-2.5-flash - Best price-performance, large-scale processinggemini-3-flash-preview - Balanced speed and frontier intelligence (default)gemini-3-pro-preview - Most intelligent multimodal model, best for complex reasoningHigher-tier models provide more sophisticated analysis but cost more per API call.
If the .env file doesn't exist or keys are missing, inform the user and provide setup instructions.
User input: "Consult the council: How should I architect a real-time data pipeline for IoT sensors?"
Claude's process:
python3 scripts/query_llms.py "How should I architect a real-time data pipeline for IoT sensors?"Present the final implementation plan naturally, mentioning key insights from other models inline where relevant. For example:
"Based on consultation with ChatGPT and Gemini, here's the recommended architecture:
[Implementation plan with inline references like "ChatGPT highlighted the importance of..." or "Gemini suggested..."]
Key contributions:
Create and train AI learning plugins with AgentDB's 9 reinforcement learning algorithms. Includes Decision Transformer, Q-Learning, SARSA, Actor-Critic, and more. Use when building self-learning agents, implementing RL, or optimizing agent behavior through experience.
Create and train AI learning plugins with AgentDB's 9 reinforcement learning algorithms. Includes Decision Transformer, Q-Learning, SARSA, Actor-Critic, and more. Use when building self-learning agents, implementing RL, or optimizing agent behavior through experience.
Design LLM applications using LangChain 1.x and LangGraph for agents, memory, and tool integration. Use when building LangChain applications, implementing AI agents, or creating complex LLM workflows.
Provide read-only NemoClaw maintainer policy. Use for questions about Issue Type, labels, Project fields, release labels, triage, duplicates, blocked items, and maintainer decisions. Trigger keywords - maintainer policy, workflow policy, project workflow, issue type, labels, label taxonomy, needs labels, project status, blocked issue, duplicate issue, daily release label, release train, triage policy.
Run stepped HTTP load tests with ab/wrk, ramping concurrency levels to collect p50/p90/p99 latency, detect performance inflection points, and recommend optimal concurrency. Triggered by requests like 'load test this URL', 'benchmark my API', 'find the max concurrency', or mentions of p99 latency, throughput saturation, or capacity planning.
Record episodes for an agentic env via teleoperation (keyboard, SO-ARM leader, or VR) into HDF5. Use when the user wants to teleop or record human demos.
| Investigate outliers, rare events, spikes, and suspicious records in datasets. Use as an explicit anomaly-analysis helper when you want concrete anomaly-detection workflow guidance, not generic data validation or end-to-end ML ownership.
Run any question, idea, or decision through a council of 5 AI advisors who independently analyze it, peer-review each other anonymously, and synthesize a final verdict. Based on Karpathy's LLM Council methodology. MANDATORY TRIGGERS: 'council this', 'run the council', 'war room this', 'pressure-test this', 'stress-test this', 'debate this'. STRONG TRIGGERS (use when combined with a real decision or tradeoff): 'should I X or Y', 'which option', 'what would you do', 'is this the right move', 'validate this', 'get multiple perspectives', 'I can't decide', 'I'm torn between'. Do NOT trigger on simple yes/no questions, factual lookups, or casual 'should I' without a meaningful tradeoff (e.g. 'should I use markdown' is not a council question). DO trigger when the user presents a genuine decision with stakes, multiple options, and context that suggests they want it pressure-tested from multiple angles.
Take gcpdev/llm-council from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.