Skip to content

v0.1.0 — Initial Release

Choose a tag to compare

@spyrae spyrae released this 20 Feb 09:05

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 via codex review
  • mcp-gemini — wraps Gemini CLI (gemini -p), Google OAuth, 1000 req/day free, 1M token context
  • mcp-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.mjs

See README for full setup guide.