Getting Started
Install AI Council, set up your license key, and run your first multi-agent AI code review in minutes.
Installation
AI Council is distributed as an npm package with pre-compiled binaries for all major platforms.
npm install -g @mugzie/ai-council
This automatically installs the correct binary for your platform:
- macOS - darwin-arm64 (Apple Silicon) or darwin-x64 (Intel)
- Linux - linux-arm64 or linux-x64
- Windows - win32-x64
Run ai-council --help to verify the installation was successful.
Claude Code CLI & Agent SDK (Optional)
To use Agent Review mode (--agent), you need the Claude Code CLI and the Claude Agent SDK.
npm install -g @anthropic-ai/claude-code
npm install @anthropic-ai/claude-agent-sdk
You will also need an Anthropic API key. Set it in your environment:
export ANTHROPIC_API_KEY="sk-ant-..."
Claude Code and the Agent SDK are only needed for --agent mode. All other review modes (review, security, perf, arch, sanity, --deep-analysis) work with just an OpenAI and/or Gemini API key.
License Setup
AI Council requires a valid license key to operate. Purchase your license from our store.
Purchase LicenseOnce you have your license key, set it as an environment variable:
export AI_COUNCIL_LICENSE_KEY="your-license-key"
# AI Council License
export AI_COUNCIL_LICENSE_KEY="your-license-key"
Quick Start
Get up and running with AI Council in under a minute.
Install the package
npm install -g @mugzie/ai-council
Set your license key
export AI_COUNCIL_LICENSE_KEY="your-key"
Configure AI provider (at least one required)
# OpenAI (recommended)
export OPENAI_API_KEY="sk-..."
# Or Google Gemini
export GEMINI_API_KEY="..."
# Or both for best results!
Run your first review
ai-council review --diff --branch=main --pretty
Need Help?
Can't find what you're looking for? Here are some resources: