Dev & Engineering multi-agent-orchestrationcode-reviewclicodexcopilotparallel-dispatchdeveloper-tools

MCO

A CLI-first orchestration layer for AI coding agents: run your chosen agents and models in parallel, compare raw answers, then act.

FollowAgents review · FARS-2.1
Use with care
73/ 100 5-point scale 3.7 / 5
1 2 3 4 5 6
Per-dimension scores and reasoning
1Trust16 / 29 · 2.8/5

Evidence shows a clear three-tier execution model (read_only/write/yolo) with yolo requiring explicit opt-in, and explicit disclaimers that --allow-paths is not an OS sandbox and providers are never inferred — good least-privilege and confirmation design. However, sensitive-data handling and rollback are entirely unaddressed in the files, and the core runtime code is absent, so the actual enforcement of permission claims cannot be verified. Attribution is weak: authors are anonymous 'mco maintainers' and the npm package lives under the personal scope @tt-a1i with an unverified publisher.

2Reliability9 / 14 · 3.2/5

Docs claim isolated invocation failures do not discard successful answers, plus a machine-readable error contract and version-alignment checks — internally consistent. Actual error-handling code is not in evidence, so scores stay at 2.

3Adaptability16 / 18 · 4.4/5

Audience, scenarios, and environments (terminal or called from other coding agents) are clearly described; ten providers are enumerated with their sandbox boundaries. Trigger precision rests on documentation assertions only, with no implementation shown.

4Convention15 / 18 · 4.2/5

Excellent documentation architecture: layered guides/reference/contracts, bilingual README, CHANGELOG/RELEASING references, consistent MIT licensing, and a version-alignment check script. CHANGELOG content itself is not provided, the package name @tt-a1i/mco diverges from the mco-org repository name, and known limitations are scattered rather than collected.

5Effectiveness12 / 13 · 4.6/5

The raw-answer-retention, no-automatic-synthesis design is a clear differentiator; output formats (text/JSON/JSONL/Markdown) are well specified. Cost/benefit is only qualitative — the token cost of parallel multi-agent runs is never quantified.

6Verifiability5 / 8 · 3.1/5

Most claims trace to specific documentation and contract files, and CI workflows corroborate the testing/packaging pipeline. The core runtime and error-contract bodies are absent from the evidence, limiting cross-source corroboration; facts and inferences must be kept separate.

Evidence confidence: Low Reviewed Sep 12, 2026 Reviewed revision d7fef6c96dca
Before you use it
  • Static review only — no code was executed. The read_only/write/yolo permission translation and sandbox behavior are unverified at runtime; confirm policy resolution with dry-run before use.
  • yolo mode activates each provider's broadest bypass profile, and ACP terminal access is designated a trusted-agent capability — use isolation for untrusted agents or prompts.
  • --allow-paths is not an OS sandbox; partition parallel writers with non-overlapping --target-paths or expect edit conflicts.
  • Publisher identity is unverified and the npm package sits under the personal scope @tt-a1i; the installer injects a Skill into calling agents, so inspect skills/mco-cli contents before installing.
  • No rollback story or sensitive-data handling (e.g., transmission/storage of proprietary code in prompts) is documented; assess independently before enterprise adoption.
Review evidence [1][2][3][4][5][6][7][8]
See the full review method →

What does this agent do, and when should you use it?

MCO (mco-org/mco, MIT licensed) is a lightweight, CLI-first orchestration layer that turns coding agents such as Claude Code, Codex, Gemini, and Pi into a review or execution team. You explicitly pick the agent team with --providers, and MCO dispatches the task in parallel while retaining each invocation's complete raw answer and operational status. It deliberately keeps answer text opaque: it does not convert natural-language output into findings, severity, confidence, consensus, or automatic decisions, leaving judgment to the human. Permissions map a single execution profile (read_only, write, yolo) onto each provider's native flags, with review read-only and run write by default. Installation bundles an mco-cli Skill so calling agents like Claude Code or Codex can drive MCO, and output is available as text, JSON, JSONL, or Markdown artifacts. Each provider CLI remains responsible for its own installation, authentication, and sandboxing, so MCO itself provides no OS-level sandbox.

MCO reads a repository via --repo and a prompt via --prompt, and dispatches the same task in parallel to selected provider CLIs (claude, codex, gemini, opencode, qwen, copilot, hermes, pi, grok, cursor), or named/model combos via --agent (e.g. fast=pi:model-a). It translates one execution mode into each provider's native permission flags (read_only, write, yolo), and can partition scope with --divide files (round-robined, non-overlapping sorted files) or --divide dimensions (rotating review lenses), plus --debate / --synthesize for debate-and-synthesis and --chain for file-backed chained stages. Output keeps each invocation's raw answer and status, returned as text, JSON, JSONL, or Markdown artifacts; --stream live / l provide live or machine-readable events and --dry-run previews the plan. Provider processes are isolated behind a shared adapter contract (detect, run, poll, cancel, transport decode), so one invocation failure does not discard successful answers. mco doctor checks locally available agents; mco agent models discovers provider models.

  1. An engineer wanting cross-model opinions before merging: run mco review --providers claude,codex,pi for a read-only high-risk bug review.
  2. A developer splitting implementation work across models: use mco run --execution-mode write with --divide files to give parallel writers non-overlapping file scopes.
  3. Someone benchmarking models on the same task: use --agent fast=pi:model-a --agent careful=pi:model-b to compare answers side by side.
  4. CI integrators: consume --stream l machine-readable events and the documented machine-readable error contract.
  5. Users who want Claude Code, Codex, or another calling agent to drive MCO: install the mco-cli Skill and let the agent read mco -h, confirm the team, and execute.
  6. Anyone troubleshooting their setup: run mco doctor -- to check locally available agents and skill health.

What are this agent's strengths and limitations?

Pros
  • Raw, opaque answers: MCO does not fabricate findings, severity, or consensus scores — reviewers see each invocation's complete original text and can judge independently.
  • Ten built-in providers (claude, codex, gemini, opencode, qwen, copilot, hermes, pi, grok, cursor) and no auto-inference from detected binaries; team selection is explicit and auditable.
  • Provider processes are isolated behind a shared adapter contract, so a single invocation failure does not discard successful answers — valuable in CI settings.
  • Clear permission model: read_only / write / yolo profiles map to each provider's native flags, and yolo is explicit opt-in only.
Limitations
  • Operation depends on each provider CLI being locally installed and authenticated; MCO does not manage installation, model access, or credentials, so setup cost sits with the user.
  • --allow-paths only validates MCO's requested scope and is not an OS sandbox; isolation strength depends on the underlying provider CLI, limiting security guarantees.
  • MCO does not create or manage worktrees; parallel writers must be partitioned with non-overlapping --target-paths or edits can conflict.
  • Special paths carry extra constraints — Hermes oneshot bypasses approvals and requires explicit --execution-mode yolo; ACP terminal access is a trusted-agent capability — so the provider permission reference must be read before adoption.

How do you install or deploy this agent?

Prerequisites: Python 3.10+, npm/npx, and at least one provider CLI (e.g. claude, codex, pi); provider installation and authentication are each provider's responsibility. Install:

npx @tt-a1i/mco@latest install

This installs the CLI plus the bundled mco-cli Skill; to choose which calling agents receive the Skill:

npx @tt-a1i/mco@latest install --agent codex --agent claude-code --yes

Then run mco doctor -- to verify available agents. For development from source: git clone https://github.com/mco-org/mco.git then python3 -m pip install -e .

How do you use this agent?

Read-only multi-agent review:

mco review --repo . --prompt "Review this repository for high-risk bugs." --providers claude,codex,pi

Coding task with write access:

mco run --repo . --prompt "Implement the requested change and run the relevant tests." --providers codex,pi --execution-mode write

Pin models for one run:

mco review --providers codex,pi --provider-models- '{"codex":"gpt-5.4","pi":{"provider":"seal","model":"deepseek-v4-pro"}}' --prompt "..."

Preview without executing with --dry-run --; watch live progress with --stream live or get machine-readable events with --stream l. Without --providers or --agent, a top-level providers config entry is used as the saved default; with neither, the team must be selected explicitly.

How does this agent compare with similar options?

The README points to Hive (hivehq.dev), a browser workbench with persistent agent identity and a shared task graph; MCO is the lighter CLI-first option for local orchestration and raw-answer comparison, while Hive suits persistent task-graph workflows.

FAQ

Does MCO cost anything extra?
MCO itself is free, MIT-licensed open source, but every invocation runs through your local provider CLIs, so costs follow each provider's (Claude, Codex, Pi, etc.) own subscription or API pricing.
Is --allow-paths a security sandbox?
No. It validates MCO's requested scope only; it is not an OS sandbox. Actual isolation depends on the underlying provider CLI's native sandbox behavior.
What happens if one agent fails?
Provider processes are isolated behind a shared adapter contract, so a single invocation failure does not discard other providers' successful answers; each invocation's complete raw answer and status are retained.
Can MCO automatically decide which agents to use?
No. MCO never infers a provider/model team from detected binaries; the team must be chosen explicitly via --providers, --agent, or a saved top-level providers config.
Is running multiple writing agents in parallel safe?
It needs care. MCO does not manage worktrees, so if you select parallel writers you should partition ownership with non-overlapping --target-paths, otherwise edit conflicts can occur.

Compare agents like this one

The same FARS review applied across the shortlist this agent qualifies for.

Related agents