FAQ
llm-council-skill is a Claude Code plugin with 1 hand-picked skill for automation work, indexed on Flowy. Install it with the command on its page. It includes llm_council_skill. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
$ npx -y skills add shuntacurosu/llm_council_skill --agent claude-code
Repo: shuntacurosu/llm_council_skill

A Claude Skill that orchestrates multiple LLMs as a "council" to achieve collective intelligence through peer review and synthesis.
LLM Council organizes multiple LLMs as a "council" instead of querying a single LLM, deriving conclusions through a 3-stage process:
Monitor council sessions in real-time with the built-in TUI dashboard:

The dashboard displays:
[1] Responses โโโถ [2] Rankings โโโถ [3] Synthesis)Enable with --dashboard or -d flag:
python scripts/run.py cli.py --dashboard "Your question"
Create a scripts/.env file to configure the models:
cd scripts
cp .env.example .env
Edit .env:
# Council Members - comma-separated provider/model list
# Format: opencode/provider/model (or provider/model, defaults to opencode)
# Examples:
# opencode/openrouter/openai/gpt-4
# opencode/anthropic/claude-3-5-sonnet-20241022
# anthropic/claude-3-5-sonnet-20241022 (opencode prefix can be omitted)
COUNCIL_MODELS=opencode/openai/gpt-4,opencode/anthropic/claude-3-5-sonnet,opencode/google/gemini-pro
# Chairman Model - performs final synthesis
CHAIRMAN_MODEL=opencode/anthropic/claude-3-5-sonnet
# Title Generation Model - for conversation titles (optional, defaults to CHAIRMAN_MODEL)
# TITLE_MODEL=opencode/anthropic/claude-3-5-haiku-20241022
# Dashboard Settings (optional)
DASHBOARD_TIMEOUT=5 # Seconds to show dashboard after completion
DASHBOARD_REFRESH_RATE=10 # Dashboard refresh rate in Hz
This tool uses OpenCode CLI to interact with LLMs. OpenCode must be installed and properly configured.
Note: Future support for other CLI tools like claude-code and codex is planned.
A virtual environment is automatically created on first run with dependencies installed.
To manually set up the virtual environment:
python scripts/setup_environment.py
This tool uses git worktrees, so it must be run within a git repository.
Using run.py automatically sets up the virtual environment and runs the script with the correct Python environment:
python scripts/run.py council_skill.py "Enter your question here"
Example:
python scripts/run.py council_skill.py "What is the best approach to implement caching in a web application?"
| Option | Description | Example |
|---|---|---|
query | Question to send to the council (positional) | "Your question" |
--dashboard, -d | Enable TUI dashboard for real-time monitoring | --dashboard |
--worktrees | Enable Git worktree mode | --worktrees |
--list | Show conversation history | --list |
--show N | Show details of conversation N | --show 1 |
--continue N | Continue conversation N | --continue 1 "Follow-up" |
--setup | Show setup guide | --setup |
--worktrees)| Option | Description | Example |
|---|---|---|
--auto-merge | Auto-merge the top-ranked proposal | --auto-merge |
--merge N | Merge member N's proposal | --merge 2 |
--dry-run | Show diff without merging | --dry-run |
--confirm | Show confirmation before merge | --auto-merge --confirm |
--no-commit | Apply without staging | --auto-merge --no-commit |
# Basic question
python scripts/run.py council_skill.py "What's the optimal caching strategy?"
# Code fix (diff only)
python scripts/run.py council_skill.py --dry-run "Fix the bug in buggy.py"
# Code fix (auto-merge with confirmation)
python scripts/run.py council_skill.py --auto-merge --confirm "Add error handling to divide function"
# Code fix (auto-merge without commit)
python scripts/run.py council_skill.py --auto-merge --no-commit "Add tests"
# Merge specific member's proposal
python scripts/run.py council_skill.py --merge 2 "Refactor this"
# Continue conversation
python scripts/run.py council_skill.py --continue 1 "Tell me more"
python scripts/run.py council_skill.py --list
python scripts/run.py council_skill.py --setup
python scripts/setup_environment.py --check
llm_council/
โโโ .venv/ # Virtual environment (auto-created)
โโโ scripts/
โ โโโ __init__.py
โ โโโ run.py # Run scripts via virtual environment
โ โโโ setup_environment.py # Virtual environment setup
โ โโโ council_skill.py # Main entry point (backward compatible)
โ โโโ api.py # High-level API (for dashboard)
โ โโโ cli.py # CLI interface
โ โโโ config.py # Configuration management
โ โโโ council.py # 3-stage council logic
โ โโโ dashboard.py # TUI dashboard (Rich-based)
โ โโโ worktree_manager.py # Git worktree management
โ โโโ unified_client.py # Unified LLM client
โ โโโ opencode_client.py # OpenCode CLI client
โ โโโ storage.py # Conversation history storage
โ โโโ logger.py # Logging configuration
โ โโโ .env # Environment variables (create this)
โ โโโ .env.example # Environment variables template
โ โโโ data/
โ โ โโโ conversations/ # Conversation history JSON
โ โ โโโ logs/ # Execution logs
โ โโโ prompts/
โ โ โโโ templates.py # Prompt templates
โ โโโ worktrees/ # Git worktree directory
โโโ requirements.txt # Python dependencies
โโโ skill.json # Claude Skill definition
โโโ README.md # This file
Each council member (configured LLM model) independently responds to the user's query.
All members anonymously review other members' responses.
The chairman model integrates all opinions and review results to generate the final response.
Edit COUNCIL_MODELS in scripts/.env:
COUNCIL_MODELS=opencode/openai/gpt-4-turbo,opencode/anthropic/claude-3-opus,opencode/google/gemini-pro
Edit CHAIRMAN_MODEL in scripts/.env:
CHAIRMAN_MODEL=opencode/anthropic/claude-3-5-sonnet
Edit scripts/prompts/templates.py to customize prompts for each stage.
This tool must be run within a git repository. Initialize with git init.
If worktrees remain for some reason:
git worktree prune
Or manually:
rm -rf scripts/worktrees/*
git worktree prune
MIT License
This project is inspired by Andrej Karpathy's llm-council.
.gitignore
AGENTS.md
CHANGELOG.md
README.ja.md
README.md
refs/
dashboard.jpg
header.jpg
requirements.txt
scripts/
__init__.py
.env.example
api.py
cli.py
config.py
council_skill.py
council.py
dashboard.py
logger.py
opencode_client.py
prompts/
templates.py
run.py
setup_environment.py
storage.py
unified_client.py
worktree_manager.py
SKILL.mdยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic