skills/council/SKILL.md
Query multiple AI agents in parallel for diverse perspectives. Use when you want multiple viewpoints on a question, to compare approaches, or to find consensus among AI models.
npx skillsauth add kenzik/agent-config councilInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Get perspectives from multiple AI agents on the same question.
At least one of these CLIs installed:
npm install -g @anthropic-ai/claude-cli
# Set ANTHROPIC_API_KEY
npm install -g @openai/codex-cli
# Set OPENAI_API_KEY
pip install google-generativeai
# Set GEMINI_API_KEY
# Ask Claude
claude -p --model opus "Your question here"
# Print mode (non-interactive)
claude --print "Your question"
# Ask Codex
codex -q "Your question here"
# Ask Gemini
gemini -m pro -o text -e "" "Your question here"
# Query all agents in parallel
(
echo "=== Claude ===" && claude --print "Your question" &
echo "=== Gemini ===" && gemini -m pro -o text -e "" "Your question" &
echo "=== Codex ===" && codex -q "Your question" &
wait
)
#!/bin/bash
QUESTION="$1"
# Query in parallel, save to temp files
claude --print "$QUESTION" > /tmp/claude-response.txt &
gemini -m pro -o text -e "" "$QUESTION" > /tmp/gemini-response.txt &
wait
echo "=== Claude's Response ==="
cat /tmp/claude-response.txt
echo ""
echo "=== Gemini's Response ==="
cat /tmp/gemini-response.txt
# Cleanup
rm -f /tmp/claude-response.txt /tmp/gemini-response.txt
# Get different review perspectives
CODE=$(cat mycode.ts)
claude --print "Review this code for best practices: $CODE"
gemini -m pro -o text -e "" "Review this code for security issues: $CODE"
QUESTION="Should I use microservices or monolith for a startup MVP with 3 developers?"
# Get multiple perspectives
claude --print "$QUESTION"
gemini -m pro -o text -e "" "$QUESTION"
ERROR="TypeError: Cannot read property 'map' of undefined"
CONTEXT="React component fetching API data"
claude --print "Debug this error: $ERROR. Context: $CONTEXT"
gemini -m pro -o text -e "" "Explain and fix: $ERROR in $CONTEXT"
After getting responses from multiple agents, ask one to synthesize:
# Save individual responses first, then:
gemini -m pro -o text -e "" "Here are responses from different AI agents about [topic]:
Response 1: [Claude's response]
Response 2: [Gemini's response]
Synthesize these into a consensus view, noting:
1. Where they agree
2. Where they differ
3. The most actionable recommendation"
When querying, you can assign roles:
claude --print "As a software architect: [question]"
gemini -m pro -o text -e "" "As a security engineer: [question]"
claude --print "Review for maintainability: [code]"
gemini -m pro -o text -e "" "Review for performance: [code]"
claude --print "Suggest conventional solutions for: [problem]"
gemini -m pro -o text -e "" "Suggest unconventional approaches for: [problem]"
Have agents respond to each other:
# Round 1: Initial positions
R1_CLAUDE=$(claude --print "Argue FOR using TypeScript in a new project")
R1_GEMINI=$(gemini -m pro -o text -e "" "Argue AGAINST using TypeScript in a new project")
# Round 2: Rebuttals
R2_CLAUDE=$(claude --print "Respond to this argument against TypeScript: $R1_GEMINI")
R2_GEMINI=$(gemini -m pro -o text -e "" "Respond to this argument for TypeScript: $R1_CLAUDE")
# Synthesis
gemini -m pro -o text -e "" "Synthesize this debate:
FOR TypeScript: $R1_CLAUDE
Rebuttal: $R2_CLAUDE
AGAINST TypeScript: $R1_GEMINI
Rebuttal: $R2_GEMINI
Provide a balanced recommendation."
& for speeddevelopment
Manage git worktrees for parallel development. Use to work on multiple branches simultaneously without stashing or switching contexts.
tools
Manage tmux sessions for background processes. Use to run long-running commands, manage multiple terminals, and capture output from background processes.
tools
Create new Agent Skills for Claude Code. Use when user wants to create a skill, add a new capability, document a CLI workflow, or asks how skills work.
tools
Manage GitHub issues using gh CLI - create, list, view, update, close, and assign issues. Use when working with GitHub issues, bug tracking, or project management tasks.