Amicus
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Amicuscouncil review my architecture design"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Amicus
A multi-model LLM Council for Claude — with a parallel AI window underneath.

Hand Claude a plan, a design, a diff, an architecture decision, a manuscript — anything — and say council review this: Amicus routes it through several models from different families, has them anonymously cross-review each other, and a non-Claude chair synthesizes a verdict you turn into accept/deny edits. Or skip the ceremony and fork a single conversation to Gemini, GPT, DeepSeek, or any other model — it works in parallel with full context, and you fold the result back when you're ready. Claude orchestrates throughout; you stay in your editor.
The same council — more ways to run it: take it headless in CI with no Claude runtime, sharpen it with a debate round, or run it on free local models (Ollama, LM Studio, vLLM) at $0 — private and offline.
Supported clients: Claude Code CLI, Claude Desktop, and Claude Cowork are fully tested and supported. Claude Code web is experimental.
Table of Contents
Related MCP server: Councly MCP Server
What is Amicus
One install delivers six things that work together:
The
second-opinionLLM Council skill. Structured multi-model review: independent reviews → anonymized peer cross-review → a non-Claude chair verdict → tiered accept/deny decisions. This is the hero.The
sidecarchat skill. Ad-hoc fork/work/fold — spin up one other model in a real window (or headless), work alongside it, fold the summary back.The
amicusCLI (with anamalias) and an MCP server. The engine underneath both skills: launches sessions, shares context, runs parallel waves, and exposes the same surface to Claude as MCP tools.A self-updating model catalog. Aliases and validation resolve against a live catalog fetched from provider APIs (cached locally), so model names stay current without a hard-coded table.
Observability.
amicus watch <id>renders any live or finished run (fan-out or council) from any terminal;--followstreams milestones as they happen;--on-completefires a hook when a run lands;--retry-failedplus opt-in cheaper-model fallbacks recover dead legs without relaunching the whole wave;amicus spendanswers "what did this cost, and where" with per-run attribution.Council Workspace.
amicus watch <runId> --ui: a window that shows a council thinking — live seats, the anonymized judge packet, the adjudication matrix, dissent drill-in, chair verdict, and cost-by-seat — for both live and historical runs. It also auto-opens on an MCP-invoked council run from Claude Code (local), so you no longer have to remember the flag (see The Council).
Claude is the orchestrator. The council and chat skills run on top of the engine; you talk to Claude, and Claude drives Amicus.

Ways to run the council
The council is the hero — start with the everyday way, and reach for the more powerful ways when you need them:
Just ask, in Claude Code. Hand Claude a plan, diff, design, or manuscript and say "council review this." The
second-opinionskill runs the whole ritual in your session — several models review independently → anonymized cross-review → a non-Claude chair verdict → tiered accept/deny edits — with no setup beyond your API keys. This is how most people use it. → The CouncilHeadless, in CI, with no Claude runtime.
amicus council run --prompt-file plan.md --council freeruns that same pipeline in one command — reviews → cross-review → tally → chair verdict — writingverdict.jsonandreport.html. It needs no Claude session, so it drops straight into CI. → Headless councilWith a debate round. Add
--debateand every Contested or Disputed finding goes back to its raiser to defend, amend, or withdraw while the disputing judges re-vote — exactly one rebuttal round, then the final tally. → The CouncilOn free, local, private models — at $0. Point the council (and sidecars) at an OpenAI-compatible server already running on your machine — Ollama, LM Studio, or vLLM — with
amicus provider add. No API key, no per-token bill, nothing leaves your machine, and it works offline. →amicus provider
Quick start
Two install channels — read this first. Amicus ships two ways, and CLI commands look different in each:
npm global (
npm install -g amicusor the install script) putsamicus/amon yourPATH. Everyamicus <command>example in this README works as written.Claude Code plugin (
/plugin install amicus@bourbondog-amicus) does not put a CLI on yourPATH. CLI calls go throughnpx -y amicus@latest <command>instead — e.g.amicus doctorbecomesnpx -y amicus@latest doctor. In exchange, the plugin channel gets two things npm does not: the slash commands/amicus:counciland/amicus:sidecar. These are plugin-channel-ONLY — npm users don't get them and drive the same skills by saying "council review this" / talking to Claude instead.Convention used throughout this README: plugin-channel users: prefix CLI examples with
npx -y amicus@latest(skip the bareamicus/am). Individual code blocks are not duplicated per channel — this note is the one translation you need.
Install — pick whichever fits. Every path delivers the MCP server and both skills; the amicus/am CLI lands on your PATH with the npm and install-script paths (the plugin path runs the CLI on demand via npx -y amicus@latest <command>):
As a Claude Code plugin — the most native path if you use Claude Code:
/plugin marketplace add BourbonDog/amicus
/plugin install amicus@bourbondog-amicus
/reload-pluginsClaude Code registers the MCP server and both skills for you — nothing to configure. It also gets you two slash commands the npm/install-script paths don't: /amicus:council (run a full council review) and /amicus:sidecar (fork a conversation to another model). (The plugin does not put amicus on your PATH — CLI calls go through npx -y amicus@latest <command>; the standalone Electron window is npm-only; and the first council/sidecar call downloads the OpenCode engine.)
With the install script — macOS, Linux, or Windows (needs Node.js ≥ 18):
# macOS / Linux
curl -fsSL https://raw.githubusercontent.com/BourbonDog/amicus/main/install.sh | sh# Windows (PowerShell)
irm https://raw.githubusercontent.com/BourbonDog/amicus/main/install.ps1 | iexWith npm — the canonical path (needs Node.js ≥ 18):
npm install -g amicusFor the npm and install-script paths, a postinstall auto-configures everything — no manual registration:
Registers the MCP server in Claude Code and in Claude Desktop / Cowork, so the Amicus tools appear natively.
Installs both skills into
~/.claude/skills/—second-opinion(the council) andsidecar(the chat skill).
Skipped the postinstall?
--ignore-scriptsnpm installs never run it, and the plugin channel skips it by design (Claude Code registers the plugin's MCP server and skills itself). Either way, runamicus init(plugin channel:npx -y amicus@latest init) any time to (re)register on demand — e.g. to also wire up Claude Desktop, which the plugin path doesn't touch. Seeamicus init.
Configure:
amicus setup
# plugin-only install (no CLI on PATH):
npx -y amicus@latest setupThis opens a graphical wizard:
Step | What it does |
1. API Keys | Enter keys for OpenRouter, Google, OpenAI, Anthropic, and/or DeepSeek. Each is validated live against the provider's API. Written to |
2. Default Model | Pick your go-to model from a searchable live picker (backed by the catalog). Used whenever you omit |
3. Model Routing | Decide which provider serves each model — e.g. route Gemini through a direct Google key and everything else through OpenRouter. |
4. Review | Confirm the configuration before saving. |
Headless environments: if Electron can't open a window, the wizard falls back to a readline-based setup in the terminal.
Your first council — no flags to learn. In Claude Code or Cowork, give Claude a document and say:
council review this
Plugin-channel users can also type /amicus:council directly instead of phrasing it as a request — same skill, explicit invocation.
Claude prepares the material, recommends a bench of models, discloses the run shape and cost, and orchestrates the rest. You make the accept/deny calls at the end. (The second-opinion skill is what teaches Claude to recognize this — if nothing happens, run amicus doctor (or npx -y amicus@latest doctor). npm/install-script installs place the skill at ~/.claude/skills/second-opinion/; plugin installs keep it inside the plugin itself — check /plugin in Claude Code to confirm amicus is enabled.)
Your first sidecar. The sidecar is the lower-level path — you can invoke it by phrase through Claude too, but the CLI gives you the flags directly:
amicus start --model gemini --prompt "Fact-check the auth approach Claude just proposed"A window opens alongside your editor with Gemini ready, pre-loaded with your conversation. Work with it, then Fold the summary back.
Install from GitHub
The npm package is the primary path. To install straight from the repo instead — the postinstall runs identically (same MCP registration, same two skills) — you just need git on your PATH:
npm install -g github:BourbonDog/amicusSee Requirements & Dependencies for the full prerequisite list.
Contributor setup
Cloning to develop Amicus? See CONTRIBUTING.md for the dev setup, git-hook wiring, and test commands.
Requirements & Dependencies
Everything you need before your first run, and what's optional.
Runtime
Node.js ≥ 18 —
node --versionto check. This is the only hard runtime prerequisite.An active Claude Code or Cowork session — Amicus is orchestrated by Claude; it is not a standalone chatbot.
Install path & the git toolchain
From the npm registry (recommended):
npm install -g amicus. No build toolchain required — the package ships prebuilt.From GitHub:
npm install -g github:BourbonDog/amicusruns identically — same MCP registration, same two skills, same postinstall. The one extra requirement is a working git on yourPATH, since npm clones the repo to install it (git --versionto check).
Model API keys — at least one is required
OpenRouter covers the most models with one key, or use a direct Google / OpenAI / Anthropic / DeepSeek key. Add one with
amicus setuporamicus key <provider> <key>; keys live in~/.config/amicus/.env. The supported env vars areOPENROUTER_API_KEY,GOOGLE_GENERATIVE_AI_API_KEY(the legacyGEMINI_API_KEYis still accepted),OPENAI_API_KEY,ANTHROPIC_API_KEY, andDEEPSEEK_API_KEY.Or skip cloud keys entirely and run local, at $0. Point Amicus at an OpenAI-compatible server already running on your machine — LM Studio, Ollama, or vLLM — and there's no API key, no per-token bill:
amicus provider add lmstudio --preset lmstudio(LM Studio),--preset ollama(Ollama), or--preset vllm(vLLM). Seeamicus provider.⚠️ OpenRouter keys need purchased credits. A brand-new, zero-credit key passes setup's live validation but then fails at runtime with a 402 on the first real call. Buy a small amount of credit before you run a council.
Electron — optional (GUI only)
Electron is an optional dependency. It powers the graphical setup wizard and the parallel sidecar window. Headless runs and the full council work without it — if Electron is absent or can't open a window,
amicus setupfalls back to a readline wizard and sidecars run headless.amicus doctorreports Electron's presence accurately and never treats its absence as fatal.
The OpenCode engine
The bundled
opencode-aiengine (the conversation runtime) installs automatically as a normal dependency — you don't install it separately. Its own postinstall lays down ~11 per-platform binaries; a transient failure there (a spawnENOENT, or an antivirus file-lock) can roll back the atomic install. If install fails partway oramicus doctorreports the OpenCode binary "not found", just re-runnpm install -g amicus(clear the cache first if it persists:npm cache clean --force).
OS support
Windows 11, macOS, and Linux are all supported; Amicus is first-class on Windows (developed and tested there, no WSL required). See the Windows section for platform specifics.
What a run costs. A sidecar is a single model call. A full council is typically ~5–8 paid model calls (e.g. 3 reviewers across 2 fan-out waves + 1 chair). Amicus shows an estimate before each council and enforces a built-in budget gate that refuses ultra-expensive models (o3-pro class) unless you opt in with --no-cost-gate. You pay your providers directly for the tokens; Amicus itself is free and open-source.
The Council
Trigger it by saying "council review this" to Claude, or, on the plugin channel, run
/amicus:councildirectly.
Why multi-model. Any single model — including the one running your session — has consistent blind spots. Route the same material through models from different families and the disagreements surface: missed issues, overstated confidence, claims one model alone would have waved through. The council is the structured version of that idea.
The flow, in five beats:
Independent reviews. Each council model reviews the artifact on its own (one parallel wave), producing a structured findings list — claim, severity (
blocker | major | minor | nit), location, rationale.Anonymized cross-review. Claude relabels every review (Review A, B, C…) and sends the identical bundle to every model. Each model ranks the reviews and adjudicates every finding (
agree | dispute | neutral) — unknowingly judging its own, so self-bias washes out. This yields a street-cred ranking and sorts findings into Disputed / Confirmed / Contested / Singleton tiers.Chair verdict. A designated non-Claude chair receives the de-anonymized picture — all reviews, rankings, and adjudications — and synthesizes an independent verdict. Claude presents it verbatim; Claude does not synthesize.
Tiered decisions. Confirmed findings get one bulk accept/deny; Contested and Singleton findings are decided one at a time (accept / deny / modify).
Outputs applied. Accepted findings are written into a reviewed copy of the source; the full run is captured in the run folder.
What a run produces (in output/<stem>-council/):
review-<model>.md× N — each model's independent review.crossreview-matrix.md— the adjudication grid plus the de-anonymized street-cred table.verdict.md— the chair's synthesis.report.md— synthesis + the full decision log + a per-call run-stats table.report.html— the deterministic renderer output (adjudication matrix, street-cred table, findings-by-tier, cost — no chair prose). This is the default artifact handed to the user.For an editable source, the accepted edits land in
<stem>-reviewed.<ext>next to the original.
Optional council elements (v2.2.0, all default off): five opt-in behaviors, offered once as a menu at launch — nothing turns on unless you name it, and the confirmation lists exactly what's on.
Critic seat — one reviewer swaps to a four-pass adversarial brief (adversarial pass, edge-case hunt, consistency check, executability test). Its findings enter the same anonymized bundle as everyone else's, so the bench disciplines the critic: manufactured negativity lands Disputed and dies in the tally.
Expert lenses — each reviewer takes a distinct expert perspective; you pick the panel domain (business, technical, customer, financial, or custom). Lens runs never feed the reliability ledger, and the report discloses the weakened cross-review anonymity.
Debate mode — after cross-review, every Contested or Disputed finding goes back to its raiser to defend, amend, or withdraw, and the disputing judges re-vote. Exactly one rebuttal round, then the final tally.
Chair verdict scale — the chair closes with 3–5 hard questions and one parseable line:
VERDICT: Ship it | Fix these first | Fundamental rethink.Claude in the council — Claude adds its own fresh review to the bundle so the bench ranks and adjudicates it. Claude is judged but never votes or chairs, so the verdict stays independent.
The critic and lens methodologies are adapted from the /critic and /debate agents in John Renaldi's product-kit (MIT); the briefing boilerplate lives in skills/second-opinion/SEAT-BRIEFS.md.
Cost is disclosed up front. Before any model launches, you see the run shape — including any enabled optional elements — for example:
This run uses 3 council models across 2 fanout waves + 1 chair call, with critic seat + debate mode ON (~7 base runs + up to 6 rebuttal calls).
Then the council waits for your confirmation.
The skill lives at skills/second-opinion/SKILL.md; the design spec behind it is skills/second-opinion/COUNCIL-DESIGN.md. For what amicus council tally|verdict|report|stats actually take as input and produce — field-by-field schemas, verdict.json's provenance, and a full worked example run against the real CLI — see docs/council.md.
Headless council (CI). The same pipeline runs with no Claude runtime at all: amicus council run --prompt-file briefing.md --models gemini,glm --chair deepseek --json executes the review
waves, the anonymized cross-review, the tally, and the chair verdict in one command, and writes
the full run directory (verdict.json with the chair's parsed overallVerdict, report.html,
every review and judge output). That is what powers the repo's own Council Review GitHub Action
v2 — on PRs labeled council-review it posts an adjudicated verdict as a check run plus a
sticky comment, uploads the run directory as an evidence artifact, and can optionally gate merges
via its fail_on input (default: report-only). Reference: docs/council.md.
Free council (zero-cost). Want the cross-examination without the model spend? amicus setup offers a Free OpenRouter council mode — readline wizard option 2, and the Electron Models step. It detects the free :free models live from the catalog, lets you multi-pick (Enter takes a vendor-diverse default), and saves them as councils.free — a first-class councils config primitive seeded under collision-safe free-* aliases. Your config.default is left untouched, and all you need is an OPENROUTER_API_KEY.
Run it anywhere a council runs:
amicus fanout --council free --prompt "Review this design"The amicus_fanout MCP tool takes the same council parameter, and the second-opinion skill reads councils.free automatically. A member that gets delisted is dropped with a warning — the council still runs as long as ≥2 survive. Free models are rate-limited and quality-variable, and some return 404 unless you enable data-sharing at openrouter.ai/settings/privacy.
Council presets. Save your own named member lists with amicus council save <name> --models a,b,c (≥2 resolvable aliases or provider/model IDs), then run them with --council <name> anywhere a council runs. amicus council list shows saved presets plus three built-in benches that work with no setup at all — free (the same zero-cost dynamic pick described above, used when you haven't seeded councils.free), budget (cheap workhorses, one per vendor family), and frontier (premium flagships, one per vendor family). amicus council show <name> resolves any of them (saved or built-in) and reports which members are currently usable. A saved council always shadows a built-in of the same name — exactly how the wizard's councils.free seeding already worked.
Policy packs (v4.5). A council preset only saves the bench. A pack saves the whole run — bench, chair, critic/lenses, cost/timeout options, and a briefing template — as one named, shareable JSON file:
amicus pack save review-bench --kind council --bench gemini,deepseek,gpt --chair opus --timeout 20 --max-cost 2
amicus council run --pack review-bench --prompt-file plan.md --jsonAny flag you also type on that second line overrides just that value — a pack only fills in what you didn't say explicitly, and it's recorded on the run either way. Packs work the same way on fanout/start and on the amicus_fanout/amicus_start/amicus_council_run MCP tools. amicus pack list/show/rm manage them, and --from-run <id> builds one from a run you already liked instead of typing flags at all. Full reference: docs/usage.md § Policy packs.
Briefing templates (v4.5). --template <name> --artifact <file> (plus repeatable --var k=v) renders a {{prompt}}/{{artifact}}-style Markdown template before it's sent, on start/fanout/council run alike — templates live in ~/.config/amicus/templates/, and a pack's briefing.template is how one reaches an MCP-invoked run (MCP has no template param of its own). amicus template list|show manage them; v4.5 ships one built-in, review. Full reference: docs/usage.md § Briefing templates.
The parallel window
When you don't need a full council — just one other model's take — fork a conversation. Amicus extracts your current Claude Code context, opens a session pre-loaded with it, you work alongside it, and you fold a structured summary back into Claude's context when you're done.
Interactive (default): a real window opens next to your editor. Switch models mid-conversation with the model switcher, then click the FOLD button (or press Cmd+Shift+F) to generate the summary. Customize the shortcut with --fold-shortcut.
Headless (--no-ui): the agent works autonomously and emits the fold summary when it finishes — ideal for bulk work like test generation or documentation. Pair with --json for a machine-readable run document.
How the fold handoff actually works. A fold is a summary handoff, not a live handback — once you fold, the sidecar model's context is gone. Mechanically: clicking FOLD asks the model for a structured summary, then writes it to the Electron process's stdout as a [SIDECAR_FOLD]-tagged block; the amicus runner that spawned Electron captures that stdout and persists it as the session's summary.md (under the session directory, alongside metadata.json and conversation.jsonl). Nothing pushes the result back to you automatically — your orchestrating agent picks it up on request, via amicus read <taskId> (CLI) or the amicus_read MCP tool. Either path returns the summary wrapped in an <untrusted_sidecar_output> fence, since it's prose from another model entering your context and should be treated as data, not instructions.
Context sharing. Your conversation history is passed automatically. Tune it:
--context-turns <N>— max conversation turns to include (default 50).--context-since <duration>— time window (e.g.2h); overrides turns.--context-max-tokens <N>— cap the context size (default 80000).--no-context— skip parent history entirely.
MCP inheritance. Amicus discovers the MCP servers your Claude Code session uses and passes them through, so the forked model has the same tools you do. Control it:
--no-mcp— don't inherit any parent MCP servers.--exclude-mcp <name>— drop a specific server (repeatable).--mcp <name=url|name=command>— add one.
Safety. Amicus warns on file conflicts (a file changed externally while the session ran) and on context drift (the shared context may be stale relative to your current session), so a fold never silently overwrites newer work.
Auto-update. Amicus checks the npm registry at most once every 24 hours (cached background check). When an update exists, the CLI prints a notice and the Electron toolbar shows a one-click Update banner. Or run it yourself:
amicus update
Commands
Command | What it does |
| Launch a new session (interactive or |
| Run N models on the same prompt in parallel (headless). |
| Show previous sessions. |
| Reopen a previous session with full history. |
| Start a new session building on a previous one. |
| Output a session's summary / conversation / metadata. |
| One-shot status for a session or fan-out wave (human or |
| Live-render a fan-out wave, council run, or session from any terminal until it finishes — in-place table on a TTY, |
| List, search, refresh the catalog, or audit aliases. |
| Diagnose your setup — keys, default model, catalog, aliases, OpenCode binary, Electron, skills, MCP registration, OpenRouter credit ( |
| Cross-run cost rollup from the spend ledger, with per-run attribution — total + per-model spend, tokens, and source mix, most-expensive first ( |
| Manage API keys non-interactively: |
| Add/list/test/remove local, OpenAI-compatible providers (LM Studio, Ollama, vLLM) — configured with |
| Council math: |
| The headless council engine: Stage-1 reviews → anonymized cross-review → deterministic tally → non-Claude chair verdict, in one command with no Claude runtime. Add |
| Save a full run configuration — bench, chair/critic/lenses, options, briefing template — and invoke it by name: |
|
|
| Abort a running session (or |
| Configure default model, API keys, and aliases. |
| Update to the latest version. |
| Start the MCP server (stdio transport). |
| Re-run skill install + MCP registration on demand — |
The am alias is interchangeable with amicus everywhere.
Every flag, every subcommand, every example — including the full amicus start option table, amicus fanout (supports --session-id, --council <name> as an alternative to --models), council presets, and every other command — lives in docs/usage.md, the canonical CLI reference. What follows here is just enough to see the shape of a run.
amicus status <id> output. Human-readable:
$ amicus status demo123
Task: demo123
Status: complete (terminal)
Elapsed: 5m 0s
Model: google/gemini-2.5-flash--json:
$ amicus status demo123 --json
{
"taskId": "demo123",
"status": "complete",
"elapsed": "5m 0s",
"version": "4.5.1",
"model": "google/gemini-2.5-flash",
"phase": "terminal"
}amicus list --status accepts running, complete, error, timed-out, aborted, crashed, idle-timeout. Full field-by-field docs (a running session's messages/STALLED reporting, wave-ID status shape, etc.) are in docs/usage.md.
Models
Amicus does not ship a frozen table of model names. Aliases and validation resolve against a live catalog fetched from provider APIs and cached at ~/.config/amicus/model-catalog.json (24-hour TTL; the fetch works without an API key). Run amicus models to see exactly what resolves on your machine — that's the source of truth, not this README.
amicus models # list the catalog
amicus models --search gemini # filter by substringstart/fanout validate your model against the catalog before launching (skip with --no-validate-model). You can also always bypass aliases and pass a full model ID directly — bare provider/model (canonical) or openrouter/provider/model (explicit override); see Routing below. Catalog internals, alias management, and the full-id passthrough table are in docs/usage.md § Models.
Routing
Bare
provider/model(e.g.openai/gpt-5.5,anthropic/claude-opus-4-8,google/gemini-3.6-flash) is the canonical, policy-routed form — Amicus routes it direct-first: your direct provider key when one is configured, falling back to OpenRouter automatically when only an OpenRouter key exists.openrouter/provider/modelis an explicit override that always forces OpenRouter, even when a direct key is present — reach for it deliberately, or for gateway-only vendors with no direct integration (Qwen, Grok, Mistral, GLM, …).--gateway auto|direct|openrouter(CLI, also on the MCP tools) overrides routing for one call;autois the direct-first default.routing.preferinconfig.json("direct"by default, or"openrouter") sets the global default.One-time migration notice: if you hold both an OpenRouter key and a direct key for a vendor, the first launch that resolves to that vendor under
autorouting (the default) prints a one-time notice that routing moved to direct API; setrouting.prefer: "openrouter"to restore the old all-OpenRouter behavior. The notice never fires when you explicitly pass--gateway direct— that's your own choice, not a migration.
Full details, the API-key/prefix table, and the migration notice are in docs/configuration.md.
MCP integration
The MCP server is auto-registered on install (Claude Code and Claude Desktop / Cowork). It exposes sixteen tools:
Tool | What it does |
| Spawn a session; returns a task ID immediately. |
| Poll a task (or a fanout wave) for completion. |
| Block inside one tool call until a session/wave finishes or the wait window closes. |
| Read results: summary, conversation, metadata, or JSON. |
| List past sessions. |
| Reopen a session. |
| New session building on a previous one. |
| Stop a running session. |
| Open the setup wizard. |
| Return usage guidance (model choice, briefings, polling). |
| Launch a same-prompt wave; returns |
| Aggregate a council wave's reviews into a scored tally. |
| Reviewer-reliability stats from past council runs. |
| Build the final council verdict from a tally + decisions; writes |
| Run the full headless council engine (Stage-1 reviews → anonymized cross-review → tally → chair verdict); returns |
| Read-only cross-run cost rollup from the spend ledger (mirrors the CLI |
The async pattern is start → status → read — amicus_start/amicus_fanout return immediately, then you poll amicus_status and call amicus_read; amicus_wait collapses that poll loop into one blocking call.
Legacy
sidecar_*tool names were removed entirely in v2.0.0 — onlyamicus_*tools exist now.AMICUS_LEGACY_ALIASES=1is a no-op left over from the v1.8.0 opt-in switch. See docs/SHIMS.md.
Manual registration and per-tool detail are in docs/usage.md § MCP Server.
Configuration
amicus setup is the recommended way to configure Amicus — it writes API keys to ~/.config/amicus/.env (0600) and persists your default model and aliases. Every environment variable (API keys, behavior tuning, headless poller, GUI/debug, process lifecycle) is documented in docs/configuration.md. v2.0.0 removed the legacy SIDECAR_* → AMICUS_* env-var mapping entirely; see docs/SHIMS.md for the removal record and rename table.
New to the disk footprint? The config tree's file-by-file contents, session storage layout, where (and whether) logs are written, config.json's exact shape, and full uninstall instructions all live in docs/configuration.md § Where things live.
JSON output
With --json, Amicus emits stable, versioned run/wave documents on stdout — built for scripting and agent consumption:
{
"taskId": "...", "model": "...", "modelInput": "...", "agent": "...",
"status": "complete", "summary": "...", "error": null,
"createdAt": "...", "completedAt": "...", "durationMs": 0
}The wave-document shape (for fanout), field meanings, and the full exit-code table are in docs/usage.md § JSON Output. Every --json document also has a published JSON Schema — see docs/schemas.md (shipped in the npm tarball under schemas/).
Windows
Amicus is first-class on Windows — developed and tested on Windows 11, no WSL required.
Most Claude-adjacent tooling assumes macOS/Linux; Amicus doesn't.
The full unit suite runs green on Windows 11.
Native-binary PATH handling resolves the OpenCode binary correctly under Windows.
Session-path encoding is handled natively (the Claude project-path encoding that trips up naive
~/.claude/projectslookups is accounted for).For long briefings,
--prompt-filesidesteps the ~32 KB Windows command-line argument cap.
Troubleshooting
Run amicus doctor first — it checks keys, catalog, OpenCode binary, Electron, skills, and MCP registration in one pass and prints a targeted fix for whatever's failing. For symptoms not covered below, or more diagnostic depth on any of these, see docs/troubleshooting.md.
Symptom | Likely cause | Fix |
"council review this" does nothing | The | Check |
| The old upstream |
|
Install fails partway, or | A transient error during the OpenCode engine's own postinstall (a spawn | Just re-run |
| No usable key for the model's vendor — bare | Run |
| Your OpenRouter key is real but has no credit. Key save ( | Add credit at openrouter.ai/credits, or switch to a zero-cost council: |
Every direct | An inherited |
|
| Not a claim the model is wrong — amicus couldn't check. That vendor's direct catalog fetch failed (usually a stale or truncated stored key), leaving its namespace empty, and an empty namespace never blocks a launch. The engine may still run the model from its own credential store, so a working model warns forever. |
|
Session not found | No session matches the given ID | Run |
No conversation history found | Project-path encoding | Check |
Headless run never finishes | Task is bigger than the default timeout | Raise it: |
Wrong session picked up | Multiple active sessions resolve ambiguously | Pass |
Fold summary looks corrupted | Debug output leaking into stdout | Re-run with |
Model fails catalog validation | The model isn't in the cached catalog (renamed, or cache stale) |
|
| Partial wave — at least one leg failed | Read the wave document's |
Debug logging:
LOG_LEVEL=debug amicus start --model gemini --prompt "test" --no-uiDocumentation
Doc | Description |
The complete CLI & MCP reference — every flag, every subcommand, every example. | |
Council pipeline reference: | |
Published JSON Schemas for every | |
Full configuration and environment reference. | |
How the engine, Electron shell, and context sharing fit together. | |
How Amicus drives the OpenCode runtime. | |
Extended troubleshooting. | |
Chrome DevTools Protocol patterns for UI testing. | |
Test suite layout and how to run it. | |
Release and publish process. | |
v2.0.0 removal record for the pre-rebrand | |
The LLM Council skill. | |
The | |
End-to-end eval harness for LLM interactions. |
Contributing
Contributions are welcome. The dev setup, git-hook wiring, and test commands live in CONTRIBUTING.md.
The autonomous Electron-UI testing approach (driving the real window over the Chrome DevTools Protocol) is documented in docs/electron-testing.md.
Built on OpenCode
Amicus is a harness built on top of OpenCode, the open-source AI coding engine. OpenCode provides the conversation runtime, tool-execution framework, agent system, and web UI. Amicus adds context sharing from Claude Code, the Electron shell, the fold/summary workflow, session persistence, parallel fanout waves, the multi-model council, and multi-client support (CLI, MCP, Cowork). OpenCode handles the hard parts of LLM interaction so Amicus can focus on the council-and-parallel-window workflow.
Attribution & License
Amicus is inspired by Claude Sidecar by John Renaldi, used under the MIT License. The original copyright (© 2025 John Renaldi) is preserved in full in LICENSE. The engine modifications, the multi-model council, and the skill bundling are © 2026 Christian Wagner, also under the MIT License. See LICENSE and NOTICE for the complete attribution.
MIT.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceConnects Claude Code with multiple AI models (Gemini, Grok-3, ChatGPT, DeepSeek) simultaneously, allowing users to get diverse AI perspectives, conduct AI debates, and leverage each model's unique strengths.Last updated151MIT
- AlicenseAqualityDmaintenanceEnables AI assistants to create council hearings where multiple LLMs (Claude, GPT, Gemini, Grok) debate topics and synthesize verdicts with trust scores and diverse perspectives.Last updated230Apache 2.0
- Alicense-qualityBmaintenanceEnables Claude to consult over 17 AI platforms and 800,000+ models to provide alternative perspectives, code reviews, and diverse feedback. It features a unique personality system and supports multi-AI group discussions and debates directly within the chat interface.Last updated40MIT
- AlicenseAqualityAmaintenanceEnables Claude to chat with various AI models and obtain multi-model consensus for complex decisions.Last updated31,0772MIT
Related MCP Connectors
A second opinion for AI agents: one prompt across several live Gonka models + roles, one call.
Deliberation + live 5-model council divergence over the Omnarai multi-AI attributed corpus.
Cross-agent artifact workspace with provenance across Claude Code, Codex, Cursor, LangGraph.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BourbonDog/amicus'
If you have feedback or need assistance with the MCP directory API, please join our Discord server