Rutherford MCP Server
The Rutherford MCP Server lets you orchestrate multiple AI coding CLI agents (Claude Code, Codex, Cursor, etc.) from a single MCP interface—delegating tasks, running parallel consensus, structured debates, and code reviews—without managing new API keys.
Delegate (
delegate): Send a prompt to a single CLI agent and get a normalized result; supports sync/async modes, file context, roles, session resumption, and safety modes (read_only,propose,write,yolo).Consensus (
consensus): Ask the same prompt to multiple CLI agents in parallel; optionally synthesize a combined verdict via majority, unanimous, plurality, or weighted voting.Debate (
debate): Have multiple CLI agents argue across rounds—each sees others' positions and revises—returning a full transcript plus a closing synthesis.Review (
review): Submit a diff or file paths for read-only code review by one or more CLI agents, with findings organized by file/line and severity.Plan (
plan): Direct a single CLI agent to produce an ordered, step-by-step implementation plan for a given goal.Doctor (
doctor): Health-probe each CLI adapter for binary presence, version, auth status, and runtime reachability.Capabilities (
capabilities): Instantly list all known CLIs, their install/auth status, and supported models—no live model calls needed.Background job management: Use
job_status,job_result, andcancel_jobto track and retrieve results from long-running async tasks.List roles (
list_roles): Discover available role personas (e.g.,planner,codereviewer,security,debugger) that can guide any delegation.
All operations default to read_only safety; write and yolo modes require explicitly trusted workspaces, and a depth guard prevents recursive CLI call chains.
Allows delegation of coding tasks, code reviews, and consensus-building to Codex CLI, using OpenAI's models for code generation and analysis.
Click on "Deploy 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., "@Rutherford MCP ServerAsk Claude Code and Codex to implement the login feature and compare solutions."
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.
uv tool install rutherford-mcp-serverUsing Claude Code? The Rutherford Claude Plugin wraps this server with one-step setup: it auto-registers the server (no manual
mcp add) and adds skills, an orchestrator agent, and slash commands for setup, panels, consensus, debate, and review. Install it with/plugin marketplace add chapmanjw/rutherford-claude-pluginthen/plugin install rutherford@rutherford-claude. Either path is fully supported — reach for the plugin for a batteries-included Claude Code experience, or wire up this server directly for any MCP client.
What Rutherford is
Rutherford is a Model Context Protocol server that speaks the
Agent Client Protocol on the other side. Your MCP client (a coding
CLI or a desktop app) calls Rutherford's tools; Rutherford spawns each target coding agent as an ACP
server over stdio and drives it through a real initialize / new_session / prompt exchange.
It is the ACP client, and each coding agent is an ACP agent. That distinction matters: under ACP the protocol negotiates the answer, token usage, tool activity, and permissions as structured events, so Rutherford never scrapes an agent's stdout and never reimplements a CLI's features. It also never calls a model provider's API directly — every answer comes from an agent you already log into, in the agent's own account.
your MCP client (Claude Code, Cursor, Codex, Claude Desktop, ...)
| MCP over stdio
v
rutherford-mcp-server (the ACP client)
| ACP over stdio, one session per voice
+--> goose acp
+--> codex-acp (the Zed adapter fronting Codex)
+--> claude-agent-acp (the Zed adapter fronting Claude Code)
+--> ... 17 more built-in agents, all config-drivenA voice that fails to spawn, handshake, or answer comes back as one failed result in a structured envelope, never an aborted panel.
Related MCP server: Claude Code MCP - Agent Orchestration Platform
See it work
The mode that is not just parallel answers is debate. Round one is each voice's independent take; in
every later round, each voice sees the others' latest positions and is asked to rebut and revise. Each
voice keeps one persistent ACP session across the rounds, so it remembers its own prior reasoning and
only the delta is sent each round — the capability the old subprocess-per-call model could not offer.
prompt "Is UUIDv7 or ULID the better primary key for a high-write event table?"
panel claude_code, codex, kiro rounds: 3
round 1 claude_code UUIDv7 — the timestamp prefix gives B-tree index locality
codex UUIDv7 — standardized and DB-native; monotonic within a process
kiro UUIDv7 — but argues ULID is BOTH lexicographically sortable AND
collision-resistant across concurrent writers
round 2 claude_code flags that Kiro conflates two properties: ULID's sortability and
its per-process monotonicity are not the same guarantee
codex agrees — the monotonic guarantee is per-process, not cross-node
kiro revises: cross-node, UUIDv7's timestamp prefix gives the locality
without relying on a per-process assumption
result converged on UUIDv7, with a closing synthesis of where the panel agreed and whyThe call returns the full per-round transcript plus the closing synthesis, so you can retrace who said what and where someone revised. Debates do not always converge or change a mind, but when they do the transcript shows precisely where.
Quickstart
You bring the crew. Rutherford does not install or authenticate any coding agent — it drives the ones you already have. You need Python 3.11+ and at least two ACP-capable agents installed and signed in (two is enough for a consensus or a debate). If you already use Claude Code or Codex, you have most of what you need.
1. Install Rutherford.
uv tool install rutherford-mcp-server
# or: pipx install rutherford-mcp-server / pip install rutherford-mcp-serverThis puts the console entry points rutherford-mcp-server and rutherford on your PATH (same
process; the short name is for terminal subcommands). The same command starts the stdio server on
Windows, macOS, and Linux; python -m rutherford is equivalent.
2. Register it with your MCP client.
claude mcp add rutherford -- rutherford-mcp-server # Claude Code
codex mcp add rutherford -- rutherford-mcp-server # CodexFor Claude Desktop, Cursor, and other JSON-config clients:
{ "mcpServers": { "rutherford": { "command": "rutherford-mcp-server" } } }If rutherford-mcp-server is not on the client's PATH, use an absolute path, or python -m rutherford
with the interpreter from the environment where you installed it. More clients and WSL:
docs/mcp-client-integration.md.
3. Scaffold a config (optional). Rutherford works with zero config. To write a starter file, either run the one-shot CLI from your terminal:
rutherford-mcp-server init # or: python -m rutherford init [--global] [--yes]or, once it is registered with a client, ask for the setup tool:
Run Rutherford's setup and write a project config.
Both resolve the config path, write a commented starter config.toml at the effective defaults, and never
clobber an existing file. init targets <cwd>/.rutherford/config.toml (or the global path with
--global); setup returns the path and content to the client and writes with write=true.
To allow write / yolo delegations into the current repo without a per-call trust_workspace=true,
register cwd in the global allowlist:
rutherford-mcp-server trust # adds cwd to global trusted_workspaces
rutherford-mcp-server trust --list # or: python -m rutherford trust --list
rutherford-mcp-server untrust # removes cwd from the global allowlistConfig is read once at server start, so restart or reconnect the server for a new entry to take effect.
4. Run doctor first. Multi-agent auth and PATH is the most common thing that goes wrong, so
confirm the crew actually drives before your first real task:
Run Rutherford's doctor and tell me which agents spawn, handshake, and answer.
doctor probes each agent with a real read-only ACP round trip — the only trustworthy health signal,
since there is no cheap non-interactive auth check. Each report is ok, no_answer,
handshake_failed, not_installed, or error. Two or more ok agents means you are ready.
No paid agent subscription? Run your first consensus for free against a local model. With
Ollama or LM Studio running, Rutherford auto-detects
each tool-capable model and registers it as a goose-based agent — no key, no account. See
docs/local-models.md.
The tools
You rarely call these by name; your agent picks them from your request. Everything defaults to read-only.
Tool | What it does |
| Hand one task to one ACP agent; get one normalized result back. |
| Ask the same prompt of several agents in parallel; return every voice. |
| Have several agents argue across rounds (persistent sessions) and return the full transcript. |
| Review a diff or a working dir's changes across one or more agents — a code-review-shaped consensus. |
| Produce an implementation plan for a task without making changes (read-only by construction). |
| Resume or build on a completed durable job (delegate / consensus / debate) with a new prompt. |
| Run an offline report over the kept run corpus (e.g. |
| List the registered agents (id, display name, launch command, provider) — the cheap snapshot. |
| Probe each agent with a real read-only ACP round trip and report conformance. |
| Detect installed ACP agents from the community registry and propose reviewable config blocks. |
| List the role personas you can pass as |
| Show where config lives, scaffold a starter |
| Reload the named multi-agent panel definitions from config without restarting the server. |
| List the background jobs being tracked (every status), newest first. |
| Show only the jobs in flight right now, each with a live elapsed time. |
| Report one background job's status and timings. |
| Return a finished job's result envelope (identical to the sync envelope). |
| Cancel a running background job and tear down its work. |
Shared arguments on delegate / consensus / debate: working_dir, files (paths to put in
scope), safety_mode, timeout_s, role, and mode (sync or async). delegate also takes
trust_workspace for the mutating modes; debate takes rounds, judge, and synthesize.
The agent roster
Rutherford ships 20 built-in agents with curated launch commands and quirks (the Windows npm-shim
resolution, per-agent handshake budgets, a fixed provider) that a bare acp.json cannot express, so
they work with zero config:
id | agent | how it launches | login |
| Goose |
| provider key / |
| OpenCode |
| a configured provider |
| Mistral Vibe |
| Mistral / |
| Cline |
| Cline's own service auth |
| Junie |
| JetBrains login |
| Kimi Code |
| Moonshot login |
| OpenHands |
| a configured provider |
| Codex |
| the existing Codex (ChatGPT) login — no API key |
| Claude Code |
| the existing Claude Code login — no API key |
| GitHub Copilot |
| GitHub Copilot plan |
| Qwen Code |
| Qwen OAuth / OpenAI-compatible key |
| Factory Droid |
| Factory login |
| Cursor |
| Cursor subscription |
| Kiro |
| Kiro login / |
| Pi |
| Pi login |
| Hermes |
| Nous endpoint |
| Gemini CLI |
| Google / Gemini CLI login |
| Qoder |
| Qoder login |
| Grok |
| xAI login + SuperGrok subscription |
| fast-agent |
| provider API key (env or |
codex and claude_code launch through the official Zed adapters (codex-acp and
claude-agent-acp, npm @agentclientprotocol/*), which front the Codex and Claude Code CLIs as ACP
servers and reuse the existing CLI login — no API key. cline drives over ACP only with Cline's own
service auth (a ChatGPT-subscription or OpenRouter provider set in the desktop app does not reach the
headless --acp path). hermes depends on the configured Nous model and its latency can be high.
gemini is Google's official Gemini CLI (the --acp mode works as of CLI 0.46.0). qoder's --acp
flag is real but hidden from --help, and Qoder's installer drops qodercli at ~/.qoder/bin/ rather
than on PATH — add that directory to PATH, point [agents.qoder] command at the full path, or let
discover find it. grok (xAI) is ACP-native and connects cleanly, but a completed turn needs a SuperGrok
subscription — without it the model call returns 403; run doctor connect_only=true to confirm Rutherford
can reach and configure it (it reports reachable and the advertised models) independent of the
entitlement. Not every agent drives cleanly on every machine — run doctor to see which actually answer
here.
Config-driven agents. Under ACP an agent is just how to launch it plus a few quirks, so the roster
is config-driven. An [agents.<id>] section overrides a built-in's command / env / provider / model,
disables one with enabled = false, or defines a brand-new agent (any unknown id, which must supply a
launch command). enabled_agents restricts the registry to an allowlist. The launch fields mirror
the Zed/Cline acp.json shape, and the loader auto-imports an acp.json beside the global config or
in the project's .rutherford/. See docs/adding-an-agent.md.
Local models. With auto_detect_local_models on (the default), Rutherford probes a running Ollama
(:11434) and LM Studio (:1234) at startup and registers each tool-capable model as a goose-based
ACP agent automatically. You can also point an agent at a local runtime by hand. See
docs/local-models.md.
Safety modes
Every delegation runs in one of four modes, defaulting to the most restrictive. Rutherford is the permission authority at the moment of each ACP tool call: it answers the agent's filesystem-write, terminal-execution, and tool-permission requests according to the mode.
Mode | Meaning |
| Inspect only. Reads are served; writes, terminal execution, and tool-permission requests are denied. |
| Same denials as |
| The agent may modify the workspace, subject to the agent's own approvals. |
| The agent may act without approval prompts. |
A call that omits safety_mode adopts the configured default_safety_mode (read_only out of the
box); an explicit value always wins. write and yolo require a trusted workspace: the target
working_dir must be on the trusted_workspaces allowlist, or the call must pass
trust_workspace=true. Full detail: docs/security.md.
Jobs, roles, and config
Background jobs. Pass mode="async" to delegate / consensus / debate to run the work off
the request path: the call returns a small {job_id, status, tool} envelope immediately, and the work
runs as an in-memory task. Manage it with list_jobs, activity, job_status, job_result, and
cancel_job. A finished job's result envelope is byte-for-byte the same as the sync path's. Jobs are
in-memory and clear on restart.
Roles. A role is a reusable system prompt. Pass role="<id>" to delegate / consensus /
debate and the persona is prepended to your prompt. Five built-ins ship as package data:
principal-reviewer, architect, debugger, security-reviewer, and explainer. A role_dirs
directory adds new roles or overrides a built-in. list_roles enumerates the catalog.
Config. Rutherford works with zero config. When you do configure it, a TOML file at the global or
project scope sets the agent roster, defaults, and safety policy; RUTHERFORD_* environment variables
override specific fields. Full reference: docs/configuration.md.
Documentation
docs/architecture.md — the v3 ACP-native architecture and the key seams.
docs/configuration.md — the complete
RutherfordConfigreference and config discovery.docs/adding-an-agent.md — config-driven agents,
acp.jsonimport, local backends.docs/local-models.md — Ollama and LM Studio as first-class voices.
docs/recipes.md — task-oriented usage recipes.
docs/mcp-client-integration.md — wiring Rutherford into MCP clients.
docs/security.md — the safety model and the permission engine in depth.
docs/troubleshooting.md — common problems and fixes.
docs/integration-testing.md — running the real-agent integration suite.
The name
.---------.
| \/\/\/ |
| O [==]|
| < |
| \___/ |
'---------'
-- Ensign Sam Rutherford --
USS Cerritos . EngineeringNamed for the cheerful engineer aboard the USS Cerritos in Star Trek: Lower Decks, who has a gift for getting heterogeneous systems to cooperate. That is the job here: one agent hands work to a crew of others and brings the results back. Star Trek and Lower Decks are trademarks of their respective owners; this is an unaffiliated, fan-named open-source project.
Contributing
See CONTRIBUTING.md. The whole core is testable without a real agent; run
just check before pushing, then just test-integration for whatever agents your machine has
installed and authenticated.
License
MIT (c) John Chapman. See LICENSE.
Available Tools
18 toolsactivityA
Show the background jobs IN FLIGHT right now (running + pending), each with a live elapsed time.
The focused "what is happening now" snapshot, distinct from list_jobs: where list_jobs enumerates
every tracked job of every status (finished ones included), activity returns only the jobs still in
flight -- {active: [...], count} with each row {job_id, tool, status, summary, started_at, elapsed_s}, longest-running first. Empty ({active: [], count: 0}) when nothing is running.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Given no annotations, the description fully discloses the output format, ordering, and empty case, providing complete behavioral transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured, front-loads key info, and every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no parameters and an output schema present, the description fully explains the output structure, making the tool complete to understand.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, so the description adds no param info, which is appropriate. Baseline for 0 params is 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool shows background jobs in flight with live elapsed time, and distinguishes itself from list_jobs explicitly.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It directly contrasts with list_jobs, explaining when to use this tool versus the sibling, making the usage context very clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
analyzeA
Analyze the kept run corpus (read-only). report="historical_agreement" is the default and only report.
historical_agreement scans the consensus panels you kept (persist=true / default_persistence=job) and
reports how often two DISTINCT model lineages reached the same verdict when they co-voted -- an
OBSERVATIONAL signal for your roster choice (e.g. a lineage that never adds a dissent), NOT a vote discount:
agreement is not correctness, so down-weighting agreeing lineages would punish them for being right
together. An empty corpus returns an empty report whose notes explain how to build one.
| Name | Required | Description | Default |
|---|---|---|---|
| report | No | historical_agreement |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden. It discloses that the operation is read-only, that historical_agreement is the default and only report, that it scans persisted consensus panels, and that an empty corpus returns an empty report with explanatory notes. This is thorough and honest about edge-case behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core action and read-only nature, then efficiently covers the only report, the scan behavior, the interpretive caveat, and the empty-corpus edge case. Every sentence contributes substance with no filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
An output schema exists to cover return values, so the description only needs to cover invocation semantics, which it does completely: the parameter default, valid value, corpus being analyzed, read-only nature, and empty-corpus behavior. An agent has everything needed to invoke and interpret the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides a single report parameter with zero description coverage, so the description must compensate. It fully does so by stating that report="historical_agreement" is the default and only valid report, leaving no ambiguity about what value to pass.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Analyze the kept run corpus' and immediately narrows to the only report, historical_agreement, which scans consensus panels and reports co-voting agreement between distinct lineages. This clearly differentiates it from broad analysis or other read-only tools like review or activity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives clear context on when to use the tool: to get an observational signal for roster choice, and it explicitly warns against misusing it as a vote discount or correctness measure. It does not explicitly compare with sibling tools such as consensus, but the intended use is well framed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
cancel_jobA
Cancel a running background job (killing its work) and return {job_id, status}; JOB_NOT_FOUND if unknown.
Cancelling an already-finished job is a no-op that returns its current status. The job's process tree is torn down on the next cancellation point.
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses the side effects (killing work, tearing down process tree) and behavior for finished jobs. Lacks mention of permissions or auth, but sufficient for a kill operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise paragraphs with no superfluous information. The first sentence front-loads essential purpose; the second adds useful detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Tool is simple with one param and output schema exists. Description covers return values and error case. Could mention that job_id comes from list_jobs, but overall adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has no description for job_id (0% coverage). The description implies job_id identifies the job but does not explicitly state its format or origin, leaving some ambiguity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'cancel' and the resource 'running background job', and specifies the return format. It distinguishes from sibling tools like continue_job (opposite) and job_status (read-only).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It indicates when to use (for running jobs) and that cancelling a finished job is a no-op. However, it does not explicitly mention when not to use or provide direct alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
capabilitiesA
List the ACP agents Rutherford can drive (static roster; no spawn).
Each agent includes id, display name, launch command, provider, configured default_model /
fallback_model, model_selection (launch_argv for Cursor-style launch flags, else
in_session), and effort_capable. Model resolution is: explicit model -> agent
default_model -> agent-native default. For live advertised model ids, use
doctor(agent=<id>, connect_only=true) -- capabilities never probes an agent.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full behavioral burden and does so well. It discloses that the tool does not spawn agents, does not probe agents, and provides the exact model resolution order. This gives the agent a strong mental model of the tool's behavior without needing annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose and then provides tightly relevant details: roster contents, model resolution, and the doctor alternative. Every sentence earns its place; there is no filler or redundant restatement.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no parameters and an output schema exists, the description covers everything an agent needs: what the roster contains, how models are resolved, that it is static/non-probing, and which sibling to use for live model ids. The context is fully sufficient for correct selection and invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so parameter semantics are largely moot. The description adds value by explaining what each returned agent includes and how model resolution works, which compensates for having no parameters to document.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('List') and resource ('ACP agents Rutherford can drive'), and immediately distinguishes this tool from actions by noting it is a 'static roster; no spawn'. This clearly separates it from sibling tools like doctor and delegate.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells the agent when NOT to use this tool: 'For live advertised model ids, use doctor(agent=<id>, connect_only=true)'. It also clarifies that capabilities is for static roster information and never probes agents, giving clear routing guidance relative to siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
consensusA
Ask the same prompt of several ACP agents in parallel and reduce the voices.
targets is a list of {cli, model} objects or cli / cli:model strings; each runs as its own ACP
session concurrently. Omit targets, pass an empty list, pass the sentinel "all", or set
expand_all=true to fan out to every registered agent (each at its default model, capped at
max_targets); the result's skipped field explains any agent left out. Or name a saved panel (with
optional panel_overrides) to reuse a stored roster + strategy instead of targets; they are mutually
exclusive (see reload_panels). A {cli, model} target may
also carry per-seat role / label / weight / parity / stance. With a strategy other than
all-voices (unanimous | majority | plurality | weighted | parity-pair | rank, optionally
with a verdict_schema), each voice is asked for a verdict and the panel collapses to one outcome
(StrategyResult) instead of every voice. rank is a two-round protocol (F4b): every voice answers, then
ranks the OTHER answers anonymized and self-excluded, aggregated by Borda mean-rank into a rank
leaderboard with a pairwise agreement matrix and concordance; require_dissent surfaces each non-winning
position on its dissent. discount_correlated=true (F3 vote-math, opt-in) down-weights correlated votes
by model-family lineage (vendor fallback) so a panel of "one model in N CLI costumes" counts as one
effective vote under majority / plurality / weighted (each voice's lineage_weight shows it). Optional
stances (parallel to targets) steer each voice and cannot combine with the auto-expanded panel.
synthesize (defaults to synthesize_default, off
out of the box) adds a server-side combined answer (all-voices only); judge names the seat that
writes it. timeout_s applies to every voice; one failing voice is a failed result, never an aborted
panel. Consensus is read-only deliberation: a safety_mode beyond read_only (propose / write /
yolo) is refused -- there is no coherent merge of edits from several agents into one tree -- so route
write / propose work through delegate (a single agent isolated in a worktree sandbox). role names a
persona (see list_roles) prepended to the prompt every voice
receives. effort (low | medium | high | xhigh | max) asks every voice to spend more reasoning where it
has a knob; max is accepted and clamped to each agent's ceiling. time_budget_s is a wall-clock
deadline for the WHOLE panel (distinct from each voice's
timeout_s): at the deadline answered voices are kept, in-flight ones cut, and the panel aggregates over
the harvest if min_quorum usable remain (stop_reason="budget", with a rollup); below min_quorum
is BUDGET_EXHAUSTED. on_budget is harvest | continue | resume (default default_on_budget). persist
keeps the panel as a durable job (F2): a parent state.json linking a child record per voice, plus
voices/voice-N.md artifacts; None follows default_persistence, true / false force it.
mode="async" runs the panel as a background job and returns a job_id (poll with job_status /
job_result); mode="sync" awaits it.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | sync | |
| role | No | ||
| files | No | ||
| judge | No | ||
| panel | No | ||
| effort | No | ||
| prompt | Yes | ||
| persist | No | ||
| stances | No | ||
| targets | No | ||
| strategy | No | ||
| on_budget | No | ||
| timeout_s | No | ||
| expand_all | No | ||
| synthesize | No | ||
| safety_mode | No | ||
| working_dir | No | ||
| time_budget_s | No | ||
| verdict_schema | No | ||
| panel_overrides | No | ||
| require_dissent | No | ||
| external_tracking | No | ||
| discount_correlated | No | ||
| require_independent_judge | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and delivers: the tool is read-only, rejects non-read-only safety modes, treats one failing voice as failure, has distinct per-voice timeout vs whole-panel time_budget_s, supports persistence and async job_id returns, and explains the rank protocol and discounting. This is substantial beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the one-sentence purpose and then packs every paragraph with unique behavior. It is long, but each sentence carries a distinct rule or edge case; some density and parenthetical protocol labels (F4b, F3) make it harder to scan.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 24-parameter tool with no schema descriptions, this covers nearly all decision points: target selection, saved panels, strategies, two-round rank, budget overflow, async mode, persistence, and read-only guarantees. An output schema exists, so return values don't need detailing; only a few minor parameters remain unexplained.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must explain parameters, and it does for the vast majority: targets/expand_all/panel/panel_overrides, strategy/verdict_schema/require_dissent, stances, synthesize/judge, timeout_s/time_budget_s/on_budget, mode, persist, safety_mode, role, effort, discount_correlated. A few params (files, working_dir, external_tracking, require_independent_judge) are left undescribed, and min_quorum is referenced without being a schema parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Opens with a crisp action statement — 'Ask the same prompt of several ACP agents in parallel and reduce the voices' — naming the verb, resource, and outcome. It also contrasts itself with delegate for write work, so it is distinguishable from siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when consensus applies (parallel read-only deliberation) and when-not: safety modes above read_only are refused and write/propose work should route to delegate. Also distinguishes the target/panel selection modes and tells the agent to poll via job_status/job_result for async mode.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
continue_jobA
Continue a completed durable job with a new direction, picking up where the kept run left off.
job_id is the id of a kept run under <jobs_dir>/ (the run_dir name a persisted result carries). A
delegate job resumes its one session (else re-injects the prior prompt + answer); a consensus panel
resumes each voice's session and re-aggregates under the recorded strategy; a debate resumes each seat's
session and argues rounds MORE rounds (rounds is ignored for the other kinds). The parent's record
supplies the roster, model, working dir, role, files, and -- for a panel -- the strategy / stances /
per-seat steering, all inherited unless overridden here. A seat whose agent cannot reload its ACP session
is recorded as a failed voice, never silently dropped. The continuation is a fresh run linked to the
parent (continued_from) -- the parent is never mutated. The trust gate is re-applied fresh and defaults
to read_only (panels are read-only deliberation regardless). persist (default true) keeps the
continuation as its own durable child job. mode="async" runs it as a background job and returns a
job_id.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | sync | |
| role | No | ||
| files | No | ||
| model | No | ||
| effort | No | ||
| job_id | Yes | ||
| prompt | Yes | ||
| rounds | No | ||
| persist | No | ||
| timeout_s | No | ||
| safety_mode | No | ||
| working_dir | No | ||
| trust_workspace | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full disclosure and does so well: it states the parent is never mutated, the continuation is a fresh run with continued_from, the trust gate is re-applied and defaults to read_only, failed voices are recorded rather than silently dropped, and persist/mode change durability and execution. This gives the agent a clear side-effect and safety model.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The summary is front-loaded in the first sentence, and every subsequent sentence adds a necessary behavioral or parameter detail. The prose is dense but organized by topic (job-type behavior, inheritance, trust, persistence, execution mode), so no sentence is wasted.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 13-parameter tool with no annotations and no schema descriptions, this is a thorough specification: it defines job_id semantics, per-kind continuation behavior, inheritance rules, failure handling, trust defaults, persistence, and async mode. The presence of an output schema means return-value details are not required here, so the description is complete enough for an agent to call the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the description compensates for the most important parameters: job_id (kept run directory), rounds (only meaningful for debate), persist (creates a durable child), mode async (background and returns job_id), and inherited overrides for model, working_dir, role, and files. A few parameters such as safety_mode, trust_workspace, and timeout_s are left to their names/defaults, so there is a minor gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The opening sentence states a specific action and resource: 'Continue a completed durable job with a new direction, picking up where the kept run left off.' The description then details distinct behaviors for delegate, consensus, and debate jobs, clearly positioning this as a continuation tool rather than a creation or inspection tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It clearly indicates this is for continuing kept/completed jobs and explains how the tool adapts to different job types, which gives a strong sense of when to invoke it. It does not explicitly name sibling alternatives or state when not to use it, so it stops short of a full 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
debateA
Have several ACP agents argue a question across rounds and return the full transcript.
targets is a list of {cli, model} objects or cli / cli:model strings; a debate needs at least
two. Or name a saved panel (with optional panel_overrides) for a stored roster instead of targets;
they are mutually exclusive (rounds / judge stay call args). Each voice keeps ONE persistent ACP
session across all rounds: round one is each voice's
independent answer, and each later round shows a voice the others' latest positions and asks it to
revise -- the agent remembers its own prior reasoning in-session, so only the delta is sent.
carry_forward=true instead re-sends the FULL prior transcript verbatim each round (for a weaker session
memory; bounded by time_budget_s). track_convergence=true asks each voice for a one-word verdict each
round and stops early when the panel CONVERGES (a unanimous verdict) or STALLS (the decision holds for the
configured tolerance); the outcome field reports the termination reason (converged / stalled /
unresolved / budget / quorum_lost) and the final decision.
synthesize=true (default) adds a closing summary; judge names a target to write it. A debate is
read-only deliberation: a safety_mode beyond read_only (propose / write / yolo) is refused --
the voices run on persistent sessions in the working directory with no per-turn sandbox -- so route write /
propose work through delegate (a single agent isolated in a worktree sandbox). role names a
persona (see list_roles) prepended to the opening prompt every voice argues from. effort (low |
medium | high | xhigh | max) asks every voice to spend more reasoning where it has a knob; max is
accepted and clamped to each agent's ceiling. time_budget_s is a wall-clock deadline for the WHOLE
debate enforced at round boundaries: a round still in flight at the deadline is cut and the transcript
so far is finalized (stop_reason="budget", with a rollup); on_budget is harvest | continue | resume
(default default_on_budget; continue runs every round to completion). persist keeps the debate as a
durable job (F2): a parent state.json plus the full transcript.md; None follows
default_persistence, true / false force it. mode="async" runs the debate as a background job and
returns a job_id (poll with job_status / job_result); mode="sync" awaits it.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | sync | |
| role | No | ||
| judge | No | ||
| panel | No | ||
| effort | No | ||
| prompt | Yes | ||
| rounds | No | ||
| persist | No | ||
| targets | No | ||
| on_budget | No | ||
| timeout_s | No | ||
| synthesize | No | ||
| safety_mode | No | ||
| working_dir | No | ||
| carry_forward | No | ||
| time_budget_s | No | ||
| panel_overrides | No | ||
| external_tracking | No | ||
| track_convergence | No | ||
| require_independent_judge | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full disclosure burden and does so thoroughly. It reveals persistent per-voice ACP sessions, refusal of unsafe safety modes, early stopping under convergence/stall, budget enforcement at round boundaries, stop_reason values, rollup behavior, persistence as a durable job, and async/sync modes. This is far beyond a minimal behavioral summary.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose and then structured around parameter groups, which is appropriate given 20 parameters. It is dense and occasionally reads as one long run-on passage, but nearly every sentence adds operational detail the agent needs. It could be tightened, but it earns its length given the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the high parameter count, no annotations, and a real output schema, the description is remarkably complete: it explains the debate loop, termination conditions, budget behavior, persistence, async execution, and safety constraints. The only gaps are the few undocumented parameters (timeout_s, working_dir, external_tracking, require_independent_judge), which keeps this from being fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must explain the parameters itself. It does explain the vast majority of parameters: targets, panel, panel_overrides, rounds, judge, carry_forward, track_convergence, synthesize, safety_mode, role, effort, time_budget_s, on_budget, persist, and mode. A few remaining parameters such as timeout_s, working_dir, external_tracking, and require_independent_judge are not described, preventing a perfect score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Have several ACP agents argue a question across rounds and return the full transcript.' This immediately defines the tool's unique function and separates it from single-agent siblings like delegate, plan, or review. It also reinforces the boundary by stating that write/propose work should be routed to delegate.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear usage context, including the read-only restriction and the explicit instruction to route write/propose work through delegate. It also explains async mode and directs users to job_status/job_result for polling, and references list_roles for personas. However, it does not directly contrast debate with the sibling consensus, which would have made the when-to-use guidance fully explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delegateA
Delegate a task to one ACP agent and return its normalized result.
cli is an agent id (see capabilities); model is optional (the agent's default otherwise).
safety_mode is read_only | propose | write | yolo; when omitted, the configured default_safety_mode
applies (read_only out of the box). write and yolo also need a trusted workspace (trust_workspace=true
or a configured allowlist). direct_workspace_mutation=true asks for a write/yolo agent to edit
working_dir itself, with live terminal access there, instead of an isolated worktree/temp copy — no
diff is captured and nothing is applied back, so the run leaves no record of what it changed. Asking is
not enough: the operator must have set allow_direct_workspace_mutation in config, working_dir must
be explicit and on the configured trusted_workspaces allowlist (trust_workspace=true does NOT
qualify), and it is refused inside a delegation chain. propose cannot use it at all (INVALID_INPUT).
files lists paths to put in scope. role names a persona (see
list_roles) whose system prompt is prepended to prompt. effort (low | medium | high | xhigh | max)
asks the agent to spend more reasoning where it has a knob (codex via an advertised model[tier] id or a
confirmed reasoning_effort config option; cursor via the model id; cline via --thinking; junie via env).
max is accepted and clamped to the agent's ceiling where it has one. A reported no-op for an agent with
none. Omitted, the configured default_effort (per-agent or global) applies. fallback is an ordered
list of alternate targets
(cli / cli:model strings or {cli, model} objects) tried when the primary fails on a
re-execution-safe failure (a spawn/handshake failure that never ran the prompt); a benched alternate is
skipped and fallback_chain records the path. A write/yolo delegation never falls back.
allow_model_fallback (default true) first retries the same agent on its configured fallback model on a
model-unavailable failure, where it has one. persist keeps this run as a durable job under
<jobs_dir>/<run_id>/ (state.json + answer / diff artifacts); None follows default_persistence
(ephemeral out of the box), true / false force it. session_id resumes a prior agent session: pass
the session_id from an earlier delegate result and the agent reloads that conversation (ACP
session/load) instead of starting fresh, so a follow-up turn continues it; agents that do not persist
their own sessions fail RESUME_FAILED. mode="async" runs the turn as a background job and returns a
job_id (poll with job_status / job_result); mode="sync" awaits it.
| Name | Required | Description | Default |
|---|---|---|---|
| cli | Yes | ||
| mode | No | sync | |
| role | No | ||
| files | No | ||
| model | No | ||
| effort | No | ||
| prompt | Yes | ||
| persist | No | ||
| fallback | No | ||
| timeout_s | No | ||
| session_id | No | ||
| safety_mode | No | ||
| working_dir | No | ||
| trust_workspace | No | ||
| external_tracking | No | ||
| allow_model_fallback | No | ||
| direct_workspace_mutation | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does so thoroughly. It discloses side effects (direct_workspace_mutation captures no diff and leaves no record), failure modes (RESUME_FAILED, INVALID_INPUT), fallback semantics, persistence behavior, safety_mode defaults, and the async job pattern. This is far beyond what the schema conveys.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but every sentence carries meaningful parameter or behavioral semantics, and the core purpose is front-loaded. However, it is written as one long unstructured paragraph with nested conditions, which reduces scannability; bulleted parameter breakdowns would improve comprehension.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 17-parameter tool with no annotations, this is unusually complete: defaults, safety prerequisites, failure modes, fallback rules, persistence, session resume, and workspace-mutation caveats are all covered. It is not perfect because timeout_s and external_tracking remain undocumented in prose and there is no worked example, but the existing output schema covers return shape and the behavioral gaps are minor.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description is the only parameter documentation. It explains the meaning and constraints of almost every parameter: cli, model, safety_mode, trust_workspace, working_dir, direct_workspace_mutation, files, role, effort, fallback, allow_model_fallback, persist, session_id, and mode. Only timeout_s and external_tracking are not explicitly described, but their names and defaults make them reasonably inferable.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The first sentence states a specific action, resource, and output: 'Delegate a task to one ACP agent and return its normalized result.' The word 'one' also distinguishes it from multi-agent siblings like consensus, debate, and plan, so an agent can tell what this tool is for.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives strong contextual guidance: single-agent delegation, when write/yolo modes require a trusted workspace, when direct_workspace_mutation is refused, when fallback is skipped, and when async mode should be used. It does not explicitly name alternative sibling tools, but the 'one ACP agent' phrasing and sibling list make the intended usage clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
discoverA
Find installed ACP agents via the community registry and propose [agents.<id>] config for them.
The registry-driven companion to setup/doctor. It fetches the ACP agent registry (cached under
~/.rutherford/acp-registry.json for offline use), detects which registry agents are ALREADY installed
here -- scanning PATH plus curated install dirs (~/.local/bin, ~/.cargo/bin, ~/.<vendor>/bin),
never downloading or running npx -- and (with probe=true, the default) drives each found agent with a
real read-only ACP round trip so the proposal only includes ones that actually answer. Returns the
discovered agents and a proposed [agents.<id>] config block for the new drivers. write=true appends
that block to the config for scope (project -> <cwd>/.rutherford/config.toml, global -> the
platform path), creating the file if needed and never overwriting an existing section. refresh
re-fetches the registry. Use this to adopt an ACP agent (or bridge) Rutherford does not ship as a built-in.
| Name | Required | Description | Default |
|---|---|---|---|
| probe | No | ||
| scope | No | project | |
| write | No | ||
| refresh | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It thoroughly discloses side effects, safety, and edge behavior: read-only probing by default, registry caching under ~/.rutherford/acp-registry.json, scanning PATH and curated dirs, no downloads or npx execution, write=true appending without overwriting existing sections, and refresh behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Though long, every sentence adds necessary detail for a non-trivial tool. The purpose is front-loaded, and the rest flows logically through discovery, probing, writing, refreshing, and use-case. There is no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with four parameters, side effects, and no annotations, the description is complete: it explains the return value, config-writing behavior, file paths, cache/refresh semantics, installation scanning, and built-in exclusion. An agent can invoke it correctly with this text alone.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides only names, types, and defaults (0% description coverage), so the description must explain the parameters. It does so for all four: probe=true drives a read-only round trip, write=true appends config for the scope, scope maps to concrete config paths, and refresh re-fetches the registry.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb-resource pair: 'Find installed ACP agents via the community registry and propose [agents.<id>] config for them.' It also distinguishes itself from siblings by calling itself the 'registry-driven companion to setup/doctor,' so an agent can tell what it does without opening the schema.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states when to use the tool: 'Use this to adopt an ACP agent (or bridge) Rutherford does not ship as a built-in.' It also contrasts it with setup/doctor and clarifies that it never downloads or runs npx, making the appropriate invocation context explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
doctorA
Probe each agent (or one named agent) with a real read-only ACP round trip and report conformance.
The trustworthy health check for ACP agents: whether each spawns, handshakes, and answers. Each report
is ok / no_answer / model_unavailable / handshake_failed / not_installed / error. model_unavailable
means spawn + handshake succeeded (the agent is reachable) but the harness/provider rejected the model on
the turn (a model/provider config issue, e.g. a Claude Code on AWS Bedrock / Vertex), so it is NOT reported
as a broken agent. Slower
than capabilities (it makes a real call per agent); run it to see which of the roster actually drive on
this machine. connect_only
runs the lighter handshake-only check (spawn + handshake, no prompt) and reports reachable /
handshake_failed / not_installed plus each agent's advertised models -- it shows whether Rutherford can
talk to and configure an agent even when a model call would fail for a reason outside ACP (an auth /
entitlement / quota issue, e.g. Grok without a SuperGrok subscription).
When an agent (codex / claude_code / pi) launches a separate npm ACP adapter shim and that shim is not
installed but its underlying CLI is (you have codex/claude/pi), the report adds an install_hint
with the exact npm i -g <package> command instead of a flat not_installed -- run that, or
setup install_adapters=true, to set the adapter up.
| Name | Required | Description | Default |
|---|---|---|---|
| agent | No | ||
| timeout_s | No | ||
| connect_only | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully covers behavioral traits: it makes real read-only calls, reports specific statuses, handles npm adapters with install hints, distinguishes 'model_unavailable' as non-broken agent, and describes 'connect_only' behavior. Comprehensive and accurate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the main purpose and is structured logically. While it is somewhat lengthy, every sentence adds value, covering edge cases and alternatives. Could be slightly more concise but not wasteful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers all essential aspects: purpose, behavior, parameters (partially), differentiation from siblings, special cases (npm adapters), and output format hints. Since an output schema exists, return values need not be explained. No notable omissions for a health-check tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so description must compensate. It explains 'agent' (one or all) and 'connect_only' in detail but does not mention 'timeout_s' at all. Partial coverage leaves a gap for one parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Probe each agent (or one named `agent`) with a real read-only ACP round trip and report conformance.' It uses specific verbs and resources, and differentiates from sibling 'capabilities' by noting it is slower and makes real calls.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear context for when to use: 'run it to see which of the roster actually drive on this machine.' Also explains the 'connect_only' option for cases where model calls would fail due to auth/entitlement/quota issues. Does not explicitly state when not to use, but implies that 'capabilities' is an alternative for faster checks.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
job_resultA
Return a finished background job's result envelope -- identical to the sync tool's envelope.
A succeeded job returns its stored result verbatim; a failed job returns its error; a cancelled
or still-running job returns a structured error (poll job_status and retry); an unknown id is
JOB_NOT_FOUND.
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description provides full behavioral transparency: it details the four possible result types (succeeded, failed, cancelled/running, unknown) and notes the envelope matches the sync tool. This is comprehensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, no fluff. The main purpose is front-loaded, followed by clear case-by-case behavior. Every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema (context signal indicates it exists), the description adequately covers return values for all states. No missing behavioral details for a retrieval tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter is job_id (string, required). Schema coverage is 0%, but the parameter is self-explanatory. The description adds no extra semantics, but given its triviality, it is sufficient. A higher score would require clarifying format or source.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it returns a finished background job's result envelope, with explicit differentiation for succeeded, failed, cancelled/running, and unknown job IDs. This distinguishes it from siblings like job_status (polling) and list_jobs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains when to use (for finished jobs) and advises polling job_status for still-running jobs. It also mentions error cases (unknown id returns JOB_NOT_FOUND). It could be more explicit about when not to use, but the guidance is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
job_statusA
Report one background job's status and timings (no heavy result); JOB_NOT_FOUND if the id is unknown.
status is pending | running | succeeded | failed | cancelled. Poll this, then call job_result once
the job is succeeded (or to read the failure of a failed / cancelled job).
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses that it returns status and timings, that it does not return heavy results, and that unknown IDs yield JOB_NOT_FOUND. It does not cover permissions or rate limits, but these are less critical for a read-only polling tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, front-loaded with the main purpose, then elaborating on status values and usage flow. No unnecessary words or repetition, every sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has a single parameter, an output schema, and 17 siblings, the description adequately covers usage flow and error condition. It explains the polling pattern with job_result, which is critical. Minor omissions like timeouts or concurrency are acceptable for a status tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Only one parameter 'job_id' with 0% schema coverage. The description adds context by stating that an unknown ID returns JOB_NOT_FOUND, which goes beyond the schema's type definition. However, no further details about format or validation are provided, so it meets the minimum requirement.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Report one background job's status and timings' with a specific verb and resource. It distinguishes from siblings like job_result by noting 'no heavy result' and mentioning JOB_NOT_FOUND for unknown IDs.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly provides when to use: 'Poll this, then call job_result once the job is succeeded (or to read the failure of a failed / cancelled job).' Also notes that JOB_NOT_FOUND is returned for unknown IDs, guiding the agent on error handling.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_jobsA
List the background jobs Rutherford is tracking (id, tool, status, summary, timestamps), newest first.
The light listing -- no heavy result. Fetch a finished job's result with job_result. Jobs are
in-memory: a finished one is evicted after job_ttl_s, and a restart clears them all.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses that it's a light listing (no heavy result), jobs are in-memory, evicted after job_ttl_s, cleared on restart. No annotations provided, so description fully covers behavioral traits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Very concise: two short sentences covering purpose, usage, and behavioral context. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Complete given no parameters and presence of output schema. Describes return fields, ordering, and lifecycle. No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters in input schema, so baseline is 4. No need for additional parameter information.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the tool lists background jobs with specific fields (id, tool, status, summary, timestamps) and ordering (newest first). Distinguishes from siblings like job_result by noting it's a light listing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly tells when to use this tool (light listing) vs alternatives (use job_result for finished job's result). Also provides context on job lifecycle (eviction after ttl, cleared on restart).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_rolesA
List the available role personas (id, name, description) for the role param.
A role is a reusable system prompt; pass its id as role="<id>" to delegate / consensus /
debate and the persona is prepended to your prompt. Built-in roles ship with Rutherford; a
role_dirs directory can add or override one.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that roles are reusable system prompts, that the persona is prepended to the prompt, and that built-in roles can be supplemented or overridden via `role_dirs`. This is meaningful context beyond the simple act of listing, though it does not explicitly state read-only behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose and then provides necessary conceptual context in a compact second sentence. Every sentence contributes useful information without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a no-parameter listing tool with an output schema, the description is complete. It explains what roles are, how to use their ids, and how additional roles can be introduced, giving an agent everything needed to decide when to call this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
This tool has zero parameters, so the baseline is 4. The description still adds value by explaining the semantics of the `role` parameter used in sibling tools, even though that parameter is not part of this tool's input schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: list available role personas with their id, name, and description. It clearly frames the tool as a listing operation for the `role` parameter and distinguishes it from the action-oriented siblings like `delegate`, `consensus`, and `debate`.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains that returned role ids are meant to be passed as `role="<id>"` to `delegate`, `consensus`, or `debate`, effectively telling the agent when this listing is relevant. It does not explicitly state when not to use it, but there are no competing list-role alternatives among the siblings, so the guidance is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
planA
Ask one ACP agent for an implementation plan for goal under the architect persona (read-only).
A read-only delegate with the architect (planner) persona prepended: the agent designs an approach
rather than implementing it. cli is an agent id (see capabilities); model is optional. files
lists paths to put in scope. Always read-only -- planning never mutates the tree; implementing the plan
is delegate in write mode.
| Name | Required | Description | Default |
|---|---|---|---|
| cli | Yes | ||
| goal | Yes | ||
| role | No | architect | |
| files | No | ||
| model | No | ||
| timeout_s | No | ||
| working_dir | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly states 'Always read-only -- planning never mutates the tree' and explains that the agent 'designs an approach rather than implementing it.' This covers the key behavioral traits, though it does not discuss timeout, working directory behavior, or failure modes; that keeps it below a 5.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded: the first sentence states the purpose and read-only nature, and the second adds precise distinctions and parameter context. Every sentence earns its place; there is no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is largely complete for an agent invoking the tool: it explains what the tool does, its read-only guarantee, how it relates to `delegate`, and several key parameters. The output schema exists, so return-value details are not required. The main gap is the unexplained `timeout_s` and `working_dir` parameters, leaving some invocation context unclear.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the text must compensate for the bare schema. It explains `goal`, `cli` as an agent id, `model` as optional, `files` as paths in scope, and `role` implicitly via the architect persona. However, `timeout_s` and `working_dir` receive no semantic explanation, leaving two parameters undocumented in both schema and description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific action: 'Ask one ACP agent for an implementation plan for `goal` under the `architect` persona (read-only).' It clearly identifies the resource, the goal, and the persona, and it explicitly contrasts with implementing via `delegate` in write mode, distinguishing it from the closest sibling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description states when to use this tool ('planning') and when not to, saying 'implementing the plan is `delegate` in write mode.' It also clarifies the read-only constraint and notes `cli` is an agent id, pointing to `capabilities` for reference, and mentions `files` scopes paths. This gives explicit selection guidance vs alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
reload_panelsA
Re-read saved panels from disk (after editing a panels.toon) and list those now available.
Returns {reloaded, count, panels: [{name, description, target_count}]}. Panels are discovered under
~/.rutherford/panels.toon, the project .rutherford/panels.toon, and $RUTHERFORD_CONFIG_DIR, merged
by name (closest scope wins). A malformed panels file raises PANEL_INVALID naming the file and seat.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description takes full responsibility for behavioral disclosure. It explains the merging logic across multiple config locations and the error behavior on malformed files (raises PANEL_INVALID). This provides sufficient transparency for a read operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with four front-loaded sentences. Each sentence adds unique value: main action, return type, discovery locations, and error handling. No redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters, no annotations, and an output schema described in the text, the description fully covers the tool's purpose, usage context, behavior, and error conditions. It is complete for a tool of this complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, so the baseline score is 4. The description does not need to add parameter meaning, and the schema is fully covered.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's action ('re-read saved panels from disk') and the specific scenario ('after editing a `panels.toon`'). It distinguishes the tool from siblings by being highly specific, and no sibling tool performs a similar operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool ('after editing a panels.toon'). However, it does not explicitly state when not to use it or mention alternatives, though no direct siblings exist.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
reviewA
Review a diff or a set of files across one or more ACP agents (read-only). Provide diff or paths.
A read-only consensus under the principal-reviewer persona: each agent reviews the code and the
panel returns every voice plus a combined verdict. targets is a list of {cli, model} objects (or
cli / cli:model strings); or name a saved panel (with optional panel_overrides) instead -- the
two are mutually exclusive. Provide diff (a unified diff, inlined into the prompt) or paths (files put
in scope for the agents to read). synthesize defaults on (the combined verdict); pass false for the
raw per-voice reviews. Always read-only -- a review never mutates the tree.
| Name | Required | Description | Default |
|---|---|---|---|
| diff | No | ||
| role | No | principal-reviewer | |
| panel | No | ||
| paths | No | ||
| targets | No | ||
| timeout_s | No | ||
| synthesize | No | ||
| working_dir | No | ||
| panel_overrides | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden and does so well. It states the critical invariant upfront ('Always read-only -- a review never mutates the tree') and explains the aggregation behavior: the panel returns every voice plus a combined verdict, with `synthesize` controlling whether the combined verdict is included.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense but well organized: the main purpose and read-only nature are front-loaded, followed by input modes, target/panel selection, and synthesis behavior. Every sentence adds operational value without filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a nine-parameter tool with no annotations and zero schema description coverage, the description covers the core invariant, all major input paths, and output synthesis behavior. An output schema exists to handle return-value documentation, and the remaining undocumented parameters are optional and self-evident from their names.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate, and it does for most parameters: `diff` vs `paths`, the shape of `targets`, the `panel`/`panel_overrides` alternative, and the `synthesize` default. It leaves `role`, `timeout_s`, and `working_dir` unexplained, though their names and defaults make them relatively self-explanatory.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description leads with a specific verb and resource: 'Review a diff or a set of files across one or more ACP agents (read-only).' It clearly identifies the operation and differentiates itself from the sibling `consensus` by describing this tool as a read-only consensus under the `principal-reviewer` persona.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context for when to use the tool: provide a diff or paths for agents to review, choose targets or a saved panel, and optionally disable synthesis for raw per-voice output. It does not explicitly compare against sibling tools like `debate`, `analyze`, or `plan`, so exclusion guidance is missing, but the intended use case is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
setupA
Show where config lives and scaffold a starter config.toml; the first-run helper.
scope is project (<cwd>/.rutherford/config.toml) or global (the platform config dir's
config.toml). It returns the proposed starter content (the most useful settings at their effective
defaults) and the resolved path, plus a snapshot of the agents you already have. Pass write=true to
create the file -- it never overwrites an existing one (already_exists=true, written=false).
trust_workspace=true adds the current directory to trusted_workspaces so write/yolo delegations are
permitted there.
The adapters block reports agents whose underlying CLI is installed but whose npm ACP adapter shim is
not (codex needs codex-acp, claude_code needs claude-agent-acp, pi needs pi-acp -- what doctor
flags as not_installed with an install hint). Pass install_adapters=true to run npm i -g <package>
for each of those automatically (an explicit, opt-in machine change; off by default).
| Name | Required | Description | Default |
|---|---|---|---|
| scope | No | project | |
| write | No | ||
| trust_workspace | No | ||
| install_adapters | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden — and it delivers. It discloses the safety-critical non-overwrite guarantee ('it never overwrites an existing one'), flags install_adapters as 'an explicit, opt-in machine change; off by default', and explains what the adapters block reports and how trust_workspace affects write/yolo delegations. This is exemplary behavioral disclosure for a setup tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long, but every sentence earns its place: core purpose is front-loaded, then scope semantics, then write/overwrite guarantees, then the adapters block and opt-in install behavior. It is dense rather than padded, and well-paragraphed. A slight reorganization could tighten it, but nothing is waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite 4 parameters, 0% schema coverage, and no annotations, the description covers purpose, all parameters, key return flags (already_exists, written, content, path, agent snapshot), and side effects. It even explains the adapter-shim gap it detects. Given the output schema exists, the description needn't detail full return structure, making this complete for an agent to select and invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must fully compensate — and it does. All four parameters get semantic meaning beyond raw type/default: scope maps to concrete paths, write is tied to the no-overwrite behavior, trust_workspace names the trusted_workspaces effect, and install_adapters spells out the npm i -g <package> action. Every parameter is explained.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb+resource pair: 'Show where config lives and scaffold a starter config.toml', and labels the tool 'the first-run helper'. This clearly distinguishes it from siblings like doctor, delegate, or list_roles, none of which concern config scaffolding. An agent can immediately tell what this tool is for.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The 'first-run helper' label gives clear context for when to use it, and the description cross-references doctor ('what doctor flags as not_installed'), helping an agent understand the relationship between the two tools. It lacks an explicit 'use X instead when...' exclusion, but the context is strong enough that an agent would not misuse it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
11 tool updates
v3.2.0- Added
analyze - Added
capabilities - Added
consensus - Added
continue_job - Added
debate - Changed
delegate1 field changed- added
Input schema / properties / direct_workspace_mutationAdded value: +{ + "default": false, + "type": "boolean" +}
- Added
discover - Added
list_roles - Added
plan - Added
review - Added
setup
10 tool updates
v3.1.0- Removed
analyze - Removed
capabilities - Removed
consensus - Removed
continue_job - Removed
debate - Removed
discover - Removed
list_roles - Removed
plan - Removed
review - Removed
setup
10 tool updates
v3.0.2- Added
analyze - Changed
consensus8 fields changed- added
Input schema / properties / discount_correlatedAdded value: +{ + "default": false, + "type": "boolean" +} - added
Input schema / properties / expand_allAdded value: +{ + "default": false, + "type": "boolean" +} - removed
Input schema / properties / harvest_partialRemoved value: -{ - "default": false, - "type": "boolean" -} - removed
Input schema / properties / include_rawRemoved value: -{ - "default": false, - "type": "boolean" -} - changed
Input schema / properties / judge / anyOfPrevious value: -[ - { - "description": "A delegation target: a ``(cli, model)`` pair plus optional per-seat metadata.\n\nThe CLI alone is never the unit. Bring-your-own-model CLIs (OpenCode, Goose) expose many\nmodels through one adapter, and the same adapter may appear several times in a consensus\npanel with different models. ``model`` is ``None`` to mean the adapter's default model.\n\nThe metadata fields are all optional and default to ``None`` so a bare ``(cli, model)`` target\nis unchanged on the wire: ``role`` overrides the tool-level role for this seat, ``label`` is the\nkey the seat appears under in a result, ``weight`` and ``parity`` feed the consensus strategies,\nand ``stance`` steers the seat (taking precedence over a parallel stances list).", - "properties": { - "cli": { - "type": "string" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "parity": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "default": null - }, - "role": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "stance": { - "anyOf": [ - { - "description": "Optional per-target steering for a consensus panel.", - "enum": [ - "for", - "against", - "neutral" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "weight": { - "anyOf": [ - { - "minimum": 0, - "type": "number" - }, - { - "type": "null" - } - ], - "default": null - } - }, - "required": [ - "cli" - ], - "type": "object" - }, - { - "type": "string" - }, - { - "type": "null" - } -]New value: +[ + {}, + { + "type": "null" + } +] - added
Input schema / properties / require_dissentAdded value: +{ + "default": false, + "type": "boolean" +} - added
Input schema / properties / require_independent_judgeAdded value: +{ + "default": false, + "type": "boolean" +} - changed
Input schema / properties / targets / anyOfPrevious value: -[ - { - "items": { - "anyOf": [ - { - "description": "A delegation target: a ``(cli, model)`` pair plus optional per-seat metadata.\n\nThe CLI alone is never the unit. Bring-your-own-model CLIs (OpenCode, Goose) expose many\nmodels through one adapter, and the same adapter may appear several times in a consensus\npanel with different models. ``model`` is ``None`` to mean the adapter's default model.\n\nThe metadata fields are all optional and default to ``None`` so a bare ``(cli, model)`` target\nis unchanged on the wire: ``role`` overrides the tool-level role for this seat, ``label`` is the\nkey the seat appears under in a result, ``weight`` and ``parity`` feed the consensus strategies,\nand ``stance`` steers the seat (taking precedence over a parallel stances list).", - "properties": { - "cli": { - "type": "string" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "parity": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "default": null - }, - "role": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "stance": { - "anyOf": [ - { - "description": "Optional per-target steering for a consensus panel.", - "enum": [ - "for", - "against", - "neutral" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "weight": { - "anyOf": [ - { - "minimum": 0, - "type": "number" - }, - { - "type": "null" - } - ], - "default": null - } - }, - "required": [ - "cli" - ], - "type": "object" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": "string" - }, - { - "type": "null" - } -]New value: +[ + { + "items": {}, + "type": "array" + }, + { + "type": "string" + }, + { + "type": "null" + } +]
- Added
continue_job - Changed
debate8 fields changed- added
Input schema / properties / carry_forwardAdded value: +{ + "default": false, + "type": "boolean" +} - removed
Input schema / properties / filesRemoved value: -{ - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": null -} - removed
Input schema / properties / include_rawRemoved value: -{ - "default": false, - "type": "boolean" -} - changed
Input schema / properties / judge / anyOfPrevious value: -[ - { - "description": "A delegation target: a ``(cli, model)`` pair plus optional per-seat metadata.\n\nThe CLI alone is never the unit. Bring-your-own-model CLIs (OpenCode, Goose) expose many\nmodels through one adapter, and the same adapter may appear several times in a consensus\npanel with different models. ``model`` is ``None`` to mean the adapter's default model.\n\nThe metadata fields are all optional and default to ``None`` so a bare ``(cli, model)`` target\nis unchanged on the wire: ``role`` overrides the tool-level role for this seat, ``label`` is the\nkey the seat appears under in a result, ``weight`` and ``parity`` feed the consensus strategies,\nand ``stance`` steers the seat (taking precedence over a parallel stances list).", - "properties": { - "cli": { - "type": "string" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "parity": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "default": null - }, - "role": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "stance": { - "anyOf": [ - { - "description": "Optional per-target steering for a consensus panel.", - "enum": [ - "for", - "against", - "neutral" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "weight": { - "anyOf": [ - { - "minimum": 0, - "type": "number" - }, - { - "type": "null" - } - ], - "default": null - } - }, - "required": [ - "cli" - ], - "type": "object" - }, - { - "type": "string" - }, - { - "type": "null" - } -]New value: +[ + {}, + { + "type": "null" + } +] - added
Input schema / properties / require_independent_judgeAdded value: +{ + "default": false, + "type": "boolean" +} - removed
Input schema / properties / stancesRemoved value: -{ - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": null -} - changed
Input schema / properties / targets / anyOfPrevious value: -[ - { - "items": { - "anyOf": [ - { - "description": "A delegation target: a ``(cli, model)`` pair plus optional per-seat metadata.\n\nThe CLI alone is never the unit. Bring-your-own-model CLIs (OpenCode, Goose) expose many\nmodels through one adapter, and the same adapter may appear several times in a consensus\npanel with different models. ``model`` is ``None`` to mean the adapter's default model.\n\nThe metadata fields are all optional and default to ``None`` so a bare ``(cli, model)`` target\nis unchanged on the wire: ``role`` overrides the tool-level role for this seat, ``label`` is the\nkey the seat appears under in a result, ``weight`` and ``parity`` feed the consensus strategies,\nand ``stance`` steers the seat (taking precedence over a parallel stances list).", - "properties": { - "cli": { - "type": "string" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "parity": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "default": null - }, - "role": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "stance": { - "anyOf": [ - { - "description": "Optional per-target steering for a consensus panel.", - "enum": [ - "for", - "against", - "neutral" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "weight": { - "anyOf": [ - { - "minimum": 0, - "type": "number" - }, - { - "type": "null" - } - ], - "default": null - } - }, - "required": [ - "cli" - ], - "type": "object" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": "null" - } -]New value: +[ + { + "items": {}, + "type": "array" + }, + { + "type": "null" + } +] - added
Input schema / properties / track_convergenceAdded value: +{ + "default": false, + "type": "boolean" +}
- Changed
delegate3 fields changed- added
Input schema / properties / allow_model_fallbackAdded value: +{ + "default": true, + "type": "boolean" +} - changed
Input schema / properties / fallback / anyOfPrevious value: -[ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } -]New value: +[ + { + "items": {}, + "type": "array" + }, + { + "type": "null" + } +] - removed
Input schema / properties / include_rawRemoved value: -{ - "default": false, - "type": "boolean" -}
- Added
discover - Changed
doctor4 fields changed- added
Input schema / properties / agentAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null +} - added
Input schema / properties / connect_onlyAdded value: +{ + "default": false, + "type": "boolean" +} - removed
Input schema / properties / liveRemoved value: -{ - "default": true, - "type": "boolean" -} - added
Input schema / properties / timeout_sAdded value: +{ + "default": 60, + "type": "number" +}
- Changed
plan1 field changed- changed
Input schema / properties / role / defaultPrevious value: -"planner"New value: +"architect"
- Changed
review2 fields changed- changed
Input schema / properties / role / defaultPrevious value: -"codereviewer"New value: +"principal-reviewer" - changed
Input schema / properties / targets / anyOfPrevious value: -[ - { - "items": { - "anyOf": [ - { - "description": "A delegation target: a ``(cli, model)`` pair plus optional per-seat metadata.\n\nThe CLI alone is never the unit. Bring-your-own-model CLIs (OpenCode, Goose) expose many\nmodels through one adapter, and the same adapter may appear several times in a consensus\npanel with different models. ``model`` is ``None`` to mean the adapter's default model.\n\nThe metadata fields are all optional and default to ``None`` so a bare ``(cli, model)`` target\nis unchanged on the wire: ``role`` overrides the tool-level role for this seat, ``label`` is the\nkey the seat appears under in a result, ``weight`` and ``parity`` feed the consensus strategies,\nand ``stance`` steers the seat (taking precedence over a parallel stances list).", - "properties": { - "cli": { - "type": "string" - }, - "label": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "parity": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "default": null - }, - "role": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "stance": { - "anyOf": [ - { - "description": "Optional per-target steering for a consensus panel.", - "enum": [ - "for", - "against", - "neutral" - ], - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - }, - "weight": { - "anyOf": [ - { - "minimum": 0, - "type": "number" - }, - { - "type": "null" - } - ], - "default": null - } - }, - "required": [ - "cli" - ], - "type": "object" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": "null" - } -]New value: +[ + { + "items": {}, + "type": "array" + }, + { + "type": "null" + } +]
- Changed
setup10 fields changed- removed
Input schema / properties / applyRemoved value: -{ - "default": false, - "type": "boolean" -} - removed
Input schema / properties / default_persistenceRemoved value: -{ - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null -} - removed
Input schema / properties / forceRemoved value: -{ - "default": false, - "type": "boolean" -} - added
Input schema / properties / install_adaptersAdded value: +{ + "default": false, + "type": "boolean" +} - removed
Input schema / properties / panel_nameRemoved value: -{ - "default": "default", - "type": "string" -} - removed
Input schema / properties / safety_modeRemoved value: -{ - "default": "read_only", - "type": "string" -} - changed
Input schema / properties / scope / defaultPrevious value: -"global"New value: +"project" - added
Input schema / properties / trust_workspaceAdded value: +{ + "default": false, + "type": "boolean" +} - removed
Input schema / properties / trusted_workspacesRemoved value: -{ - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "default": null -} - added
Input schema / properties / writeAdded value: +{ + "default": false, + "type": "boolean" +}
10 tool updates
v2.0.0- Added
activity - Added
cancel_job - Changed
consensus18 fields changed- added
Input schema / properties / effortAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null +} - added
Input schema / properties / external_trackingAdded value: +{ + "default": false, + "type": "boolean" +} - added
Input schema / properties / harvest_partialAdded value: +{ + "default": false, + "type": "boolean" +} - added
Input schema / properties / judgeAdded value: +{ + "anyOf": [ + { + "description": "A delegation target: a ``(cli, model)`` pair plus optional per-seat metadata.\n\nThe CLI alone is never the unit. Bring-your-own-model CLIs (OpenCode, Goose) expose many\nmodels through one adapter, and the same adapter may appear several times in a consensus\npanel with different models. ``model`` is ``None`` to mean the adapter's default model.\n\nThe metadata fields are all optional and default to ``None`` so a bare ``(cli, model)`` target\nis unchanged on the wire: ``role`` overrides the tool-level role for this seat, ``label`` is the\nkey the seat appears under in a result, ``weight`` and ``parity`` feed the consensus strategies,\nand ``stance`` steers the seat (taking precedence over a parallel stances list).", + "properties": { + "cli": { + "type": "string" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "parity": { + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null + }, + "role": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "stance": { + "anyOf": [ + { + "description": "Optional per-target steering for a consensus panel.", + "enum": [ + "for", + "against", + "neutral" + ], + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "weight": { + "anyOf": [ + { + "minimum": 0, + "type": "number" + }, + { + "type": "null" + } + ], + "default": null + } + }, + "required": [ + "cli" + ], + "type": "object" + }, + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null +} - added
Input schema / properties / on_budgetAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null +} - added
Input schema / properties / panelAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null +} - added
Input schema / properties / panel_overridesAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null +} - added
Input schema / properties / persistAdded value: +{ + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null +} - added
Input schema / properties / safety_mode / anyOfAdded value: +[ + { + "type": "string" + }, + { + "type": "null" + } +] - changed
Input schema / properties / safety_mode / defaultPrevious value: -"read_only"New value: +null - removed
Input schema / properties / safety_mode / typeRemoved value: -"string" - added
Input schema / properties / strategyAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null +} - added
Input schema / properties / synthesize / anyOfAdded value: +[ + { + "type": "boolean" + }, + { + "type": "null" + } +] - changed
Input schema / properties / synthesize / defaultPrevious value: -falseNew value: +null - removed
Input schema / properties / synthesize / typeRemoved value: -"boolean" - changed
Input schema / properties / targets / anyOfPrevious value: -[ - { - "items": { - "anyOf": [ - { - "description": "A ``(cli, model)`` pair: the unit of delegation.\n\nThe CLI alone is never the unit. Bring-your-own-model CLIs (OpenCode, Goose) expose many\nmodels through one adapter, and the same adapter may appear several times in a consensus\npanel with different models. ``model`` is ``None`` to mean the adapter's default model.", - "properties": { - "cli": { - "type": "string" - }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - } - }, - "required": [ - "cli" - ], - "type": "object" - }, - { - "type": "string" - } - ] - }, - "type": "array" - }, - { - "type": "string" - }, - { - "type": "null" - } -]New value: +[ + { + "items": { + "anyOf": [ + { + "description": "A delegation target: a ``(cli, model)`` pair plus optional per-seat metadata.\n\nThe CLI alone is never the unit. Bring-your-own-model CLIs (OpenCode, Goose) expose many\nmodels through one adapter, and the same adapter may appear several times in a consensus\npanel with different models. ``model`` is ``None`` to mean the adapter's default model.\n\nThe metadata fields are all optional and default to ``None`` so a bare ``(cli, model)`` target\nis unchanged on the wire: ``role`` overrides the tool-level role for this seat, ``label`` is the\nkey the seat appears under in a result, ``weight`` and ``parity`` feed the consensus strategies,\nand ``stance`` steers the seat (taking precedence over a parallel stances list).", + "properties": { + "cli": { + "type": "string" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "parity": { + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null + }, + "role": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "stance": { + "anyOf": [ + { + "description": "Optional per-target steering for a consensus panel.", + "enum": [ + "for", + "against", + "neutral" + ], + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "weight": { + "anyOf": [ + { + "minimum": 0, + "type": "number" + }, + { + "type": "null" + } + ], + "default": null + } + }, + "required": [ + "cli" + ], + "type": "object" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "string" + }, + { + "type": "null" + } +] - added
Input schema / properties / time_budget_sAdded value: +{ + "anyOf": [ + { + "type": "number" + }, + { + "type": "null" + } + ], + "default": null +} - added
Input schema / properties / verdict_schemaAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null +}
- Added
debate - Changed
delegate7 fields changed- added
Input schema / properties / effortAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null +} - added
Input schema / properties / external_trackingAdded value: +{ + "default": false, + "type": "boolean" +} - added
Input schema / properties / fallbackAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null +} - added
Input schema / properties / persistAdded value: +{ + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null +} - added
Input schema / properties / safety_mode / anyOfAdded value: +[ + { + "type": "string" + }, + { + "type": "null" + } +] - changed
Input schema / properties / safety_mode / defaultPrevious value: -"read_only"New value: +null - removed
Input schema / properties / safety_mode / typeRemoved value: -"string"
- Added
list_jobs - Changed
plan1 field changed- removed
Input schema / properties / safety_modeRemoved value: -{ - "default": "read_only", - "type": "string" -}
- Added
reload_panels - Changed
review11 fields changed- added
Input schema / properties / panelAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null +} - added
Input schema / properties / panel_overridesAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null +} - removed
Input schema / properties / safety_modeRemoved value: -{ - "default": "read_only", - "type": "string" -} - added
Input schema / properties / synthesize / anyOfAdded value: +[ + { + "type": "boolean" + }, + { + "type": "null" + } +] - changed
Input schema / properties / synthesize / defaultPrevious value: -falseNew value: +null - removed
Input schema / properties / synthesize / typeRemoved value: -"boolean" - added
Input schema / properties / targets / anyOfAdded value: +[ + { + "items": { + "anyOf": [ + { + "description": "A delegation target: a ``(cli, model)`` pair plus optional per-seat metadata.\n\nThe CLI alone is never the unit. Bring-your-own-model CLIs (OpenCode, Goose) expose many\nmodels through one adapter, and the same adapter may appear several times in a consensus\npanel with different models. ``model`` is ``None`` to mean the adapter's default model.\n\nThe metadata fields are all optional and default to ``None`` so a bare ``(cli, model)`` target\nis unchanged on the wire: ``role`` overrides the tool-level role for this seat, ``label`` is the\nkey the seat appears under in a result, ``weight`` and ``parity`` feed the consensus strategies,\nand ``stance`` steers the seat (taking precedence over a parallel stances list).", + "properties": { + "cli": { + "type": "string" + }, + "label": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "model": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "parity": { + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null + }, + "role": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "stance": { + "anyOf": [ + { + "description": "Optional per-target steering for a consensus panel.", + "enum": [ + "for", + "against", + "neutral" + ], + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "weight": { + "anyOf": [ + { + "minimum": 0, + "type": "number" + }, + { + "type": "null" + } + ], + "default": null + } + }, + "required": [ + "cli" + ], + "type": "object" + }, + { + "type": "string" + } + ] + }, + "type": "array" + }, + { + "type": "null" + } +] - added
Input schema / properties / targets / defaultAdded value: +null - removed
Input schema / properties / targets / itemsRemoved value: -{ - "description": "A ``(cli, model)`` pair: the unit of delegation.\n\nThe CLI alone is never the unit. Bring-your-own-model CLIs (OpenCode, Goose) expose many\nmodels through one adapter, and the same adapter may appear several times in a consensus\npanel with different models. ``model`` is ``None`` to mean the adapter's default model.", - "properties": { - "cli": { - "type": "string" - }, - "model": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null - } - }, - "required": [ - "cli" - ], - "type": "object" -} - removed
Input schema / properties / targets / typeRemoved value: -"array" - removed
Input schema / requiredRemoved value: -[ - "targets" -]
- Added
setup
9 tool updates
v0.1.1- First observed
capabilities - First observed
consensus - First observed
delegate - First observed
doctor - First observed
job_result - First observed
job_status - First observed
list_roles - First observed
plan - First observed
review
TDQS
Scored across 18 tools
Most tools target clearly distinct actions: delegate runs one agent, consensus runs many in parallel, debate runs an argument across rounds, and the job tools each cover a different lifecycle stage. However, review and plan are documented as thin wrappers over consensus and delegate respectively, which creates some purpose overlap that agents must be careful to disambiguate.
Multi-word tool names consistently use snake_case verb_noun or noun_noun patterns (list_jobs, cancel_job, reload_panels, job_result), and single-word names are short readable verbs or nouns. Minor inconsistencies exist, such as 'capabilities' being a bare noun alongside 'list_roles'/'list_jobs', and 'activity' being a noun where 'list_activity' would fit the pattern.
At 18 tools, the count sits at the heavier end, but the server spans a broad domain: orchestration actions (delegate, consensus, debate, review, plan), a full background-job subsystem (5 tools), and agent/config management (5 tools). Each tool earns its place for this scope; the count is justified rather than bloated.
The core lifecycle is well covered: task execution (delegate/consensus/debate), the complete job lifecycle (create async, poll status, fetch result, cancel, continue, list all/active), and agent management (capabilities, doctor, discover, setup). Minor gaps remain — panels are edited via files with no creation tool, and there is no way to explicitly delete kept runs beyond TTL eviction.
Maintenance
Related MCP Connectors
- ParleyOAuthdev.weldra
Coordination hub for AI coding agents: message teammates, ask humans, audit every event.
Real-time chat hub for AI agents — Claude Code, Cursor, Cline, Codex over MCP or REST.
AI work orchestration for plans, tasks, teams, and coding-agent dispatch.
Build and supervise fleets of agents from Claude Code, Codex or Cursor. Connects over OAuth.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceOrchestrates multiple AI models (Gemini, OpenAI, Claude, local models) within a single conversation context, enabling collaborative workflows like multi-model code reviews, consensus building, and CLI-to-CLI bridging for specialized tasks.-
- AlicenseAqualityDmaintenanceOrchestrates multiple Claude Code agents across iTerm2 sessions with process-level isolation, enabling collaborative AI development workflows on multiple codebases with task-based inter-agent communication and persistent state management.71MIT
- AlicenseBqualityFmaintenanceEnables orchestrating multiple AI CLI agents (Claude Code, Codex, Gemini CLI, Copilot CLI) through a unified MCP interface for task delegation, cross-agent comparison, and specialized tools like code review and debugging.144 npm14MIT
- AlicenseCqualityAmaintenanceRoutes coding tasks across multiple AI CLIs (Copilot, Claude Code, Gemini, etc.) with cost-aware tier routing and parallel wave orchestration.552Apache 2.0