v0.1.0 — Initial Release
Claude Concilium v0.1.0
Multi-agent AI consultation framework for Claude Code via MCP.
What's Included
3 MCP Servers (standalone, plug & play):
mcp-openai— wraps Codex CLI (codex exec), OAuth auth, code review viacodex reviewmcp-gemini— wraps Gemini CLI (gemini -p), Google OAuth, 1000 req/day free, 1M token contextmcp-qwen— wraps Qwen CLI (qwen -p), DashScope auth, 3 model tiers
AI Concilium Skill — Claude Code skill for structured multi-agent consultation with fallback chains
Smoke Tests — MCP protocol verification without CLI tools installed
Features
- Parallel consultation with 2+ AI agents
- Production-grade fallback chains: OpenAI → Qwen → DeepSeek, Gemini → Qwen → DeepSeek
- Error detection (quota, auth, model availability)
- Proper timeout with SIGTERM/SIGKILL cleanup
- 10MB buffer limits for OOM protection
- Graceful shutdown handlers
Quick Start
git clone https://github.com/spyrae/claude-concilium.git
cd claude-concilium
cd servers/mcp-openai && npm install && cd ../..
cd servers/mcp-gemini && npm install && cd ../..
cd servers/mcp-qwen && npm install && cd ../..
node test/smoke-test.mjsSee README for full setup guide.