Every model gives you a different answer. Get the right one.
Concilium is a multi-LLM deliberation platform that runs multiple AI coding agents in parallel, has them peer-review each other's responses anonymously, and synthesizes a single superior answer — all in one desktop application.
You already know one model isn't enough. So you open multiple terminals, paste the same prompt into Claude, OpenAI, and Codex, then spend 20 minutes reading and comparing their outputs. There has to be a better way.
The old workflow:
- Copy-paste the same prompt into 3 different tools
- Switch between browser tabs, terminals, and apps
- Read 3 long outputs and compare them manually
- Hope you picked the answer with the fewest bugs
~25 minutes per prompt. High cognitive load. Error-prone.
Concilium automates the entire process:
- Parallel Execution — Send one prompt, three agents start working simultaneously
- Blind Peer Review — Juror models evaluate and rank responses anonymously
- Synthesis — A Chairman model combines the best parts into one validated answer
~3 minutes per prompt. Fully automated. Peer-validated.
- Multi-Agent Execution — Run Claude, OpenAI, and local models in parallel
- Anonymous Peer Review — Models critique each other without bias
- Consensus-Based Ranking — Objective scoring filters out hallucinations
- Synthesized Output — One answer that captures the best of all three
- Local-First — Your data stays on your machine
- Single Interface — No more tab switching or terminal juggling
- Open Source — MIT licensed, fully transparent
Concilium is open source and ready to build. Clone the repo, configure your environment, and build the app.
- Node.js 18+
- macOS 12+ (Apple Silicon or Intel) or Linux
- At least one CLI agent installed:
- Claude Code
- Codex (OpenAI)
- OpenCode or similar
git clone https://github.com/matiasdaloia/concilium.gitCreate a .env file in the desktop directory with your OpenRouter API key:
cd concilium/desktop
echo "OPENROUTER_API_KEY=sk-or-..." > .envnpm install
npm run buildThis will install dependencies and package the application into the out/ directory.
Link the CLI to your PATH:
npm linkThen open Concilium from any project directory:
cd ~/my-project
concilium # uses current directory
concilium ./backend # or specify a pathThe GUI opens with all agents running in your target directory.
Manual launch: You can also run the built executable directly from
out/Concilium-darwin-arm64/Concilium.app(macOS) or./out/Concilium-linux-x64/concilium(Linux).
Concilium uses a three-stage consensus protocol:
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ Stage 1: │ │ Stage 2: │ │ Stage 3: │
│ Parallel │ ──► │ Blind │ ──► │ Synthesis │
│ Execution │ │ Review │ │ │
└─────────────────┘ └─────────────────┘ └─────────────────┘
│ │ │
▼ ▼ ▼
┌─────────┐ ┌─────────┐ ┌─────────┐
│ Claude │ │ Juror 1 │ │ │
│ OpenAI │ │ Juror 2 │ │ Chairman│
│ OpenCode│ │ Juror N │ │ │
└─────────┘ └─────────┘ └─────────┘
│ │ │
└───────────────────────┴───────────────────────┘
│
▼
┌─────────────────┐
│ Final Answer │
│ (Validated) │
└─────────────────┘
llm-council/
├── desktop/ # Electron desktop application
│ ├── src/
│ │ ├── main/ # Main process (Node.js)
│ │ ├── preload/ # Preload scripts
│ │ └── renderer/ # React frontend
│ └── package.json
├── website/ # Astro marketing website
│ ├── src/
│ │ ├── sections/ # Page sections
│ │ ├── islands/ # Interactive React components
│ │ └── layouts/ # Page layouts
│ └── package.json
└── assets/ # Shared assets (logos, icons)
Concilium includes offline voice dictation powered by Whisper. Speak your prompts instead of typing them.
Voice dictation requires a one-time setup to download the Whisper model and build the binary:
cd desktop
# Download the Whisper model (~150MB)
npx nodejs-whisper download
# Build whisper.cpp
cd node_modules/nodejs-whisper/cpp/whisper.cpp
cmake -B build -DGGML_CUDA=OFF
cmake --build build --config Release- ffmpeg (recommended): For audio format conversion
# macOS brew install ffmpeg # Ubuntu/Debian sudo apt install ffmpeg
- Click the Dictate button next to the prompt input
- Speak your prompt
- Click Stop when finished
- Wait 2-3 seconds for transcription
- Your text appears in the prompt field
Voice dictation runs completely offline — your audio never leaves your machine.
cd desktop
npm install
npm run start # Start development server
npm link # Make `concilium` available globally
concilium . # Launch Concilium in current dir (dev mode)
npm run package # Package the app
npm run make # Create distributables
npm run test # Run testscd website
npm install
npm run dev # Start development server
npm run build # Build for production
npm run preview # Preview production buildWe welcome contributions! Please see our Contributing Guide for details.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the MIT License — see the LICENSE file for details.
- Built with Electron, React, and TypeScript
- Website powered by Astro and Tailwind CSS
- 3D visuals using React Three Fiber
Made with ❤️ by Matias Daloia
