One AI can miss things. A council of AIs catches more.
When all models agree, you can be confident it's a real issue. Fix it.
Most models flagged this. Probably worth investigating.
Models conflict. You know exactly where to focus your judgment.
Your code goes through multiple models simultaneously
Paste or review git
Running in parallel
Group by location
Unanimous/majority/split
Each tool runs your input through multiple AI models in parallel
Config files, environment variables, and customization
# TypeScript config (recommended)
npx @klitchevo/code-council init
# JavaScript in project root
npx @klitchevo/code-council init --js --root
Creates .code-council/config.ts with full type support.
import { defineConfig } from "@klitchevo/code-council/config";
export default defineConfig({
models: {
codeReview: ["anthropic/claude-sonnet-4"],
backendReview: ["openai/gpt-4o"],
},
llm: {
temperature: 0.3,
maxTokens: 16384,
},
});
| Variable | Description |
|---|---|
OPENROUTER_API_KEY | Required. Your OpenRouter API key |
CODE_REVIEW_MODELS | Models for general reviews (JSON array) |
FRONTEND_REVIEW_MODELS | Models for frontend reviews |
BACKEND_REVIEW_MODELS | Models for backend reviews |
TEMPERATURE | Response randomness (0.0-2.0, default: 0.3) |
MAX_TOKENS | Max response tokens (default: 16384) |
Choose models based on your needs and budget
We picked 4 models that are cheap, fast, and different enough from each other to catch different things. All available through OpenRouter at a fraction of the cost of frontier models. You can swap in Claude or GPT-4 anytime.
Chinese lab model with strong code understanding. Fast inference and very cheap. Good at spotting logical errors and edge cases in business logic.
minimax/minimax-m2.1
Zhipu AI's latest model. Trained on diverse multilingual data, which means it sometimes catches patterns Western-trained models miss. Solid at documentation and naming issues.
z-ai/glm-4.7
Moonshot AI's flagship. Known for strong reasoning and 128k context window. Handles large files well and tends to be thorough - sometimes catches security issues others miss.
moonshotai/kimi-k2.5
One of the best open-weight models available. Competitive with GPT-4 on coding benchmarks at a fraction of the price. Strong at architecture and design pattern analysis.
deepseek/deepseek-v3.2
["minimax/minimax-m2.1", "deepseek/deepseek-v3.2"]
["anthropic/claude-sonnet-4", "openai/gpt-4o"]
["anthropic/claude-opus-4.5", "openai/gpt-4o"]
Add to your Claude Desktop config and start reviewing
{
"mcpServers": {
"code-council": {
"command": "npx",
"args": ["-y", "@klitchevo/code-council"],
"env": {
"OPENROUTER_API_KEY": "your-api-key"
}
}
}
}
Get your API key at openrouter.ai/keys