AgentXchain v2.24 — All Adapters Proven Live
April 2026 — AgentXchain v2.24.1 is the first release where all four runtime adapters are proven live, and the three non-manual adapters (local_cli, api_proxy, mcp) are proven with real AI models instead of mocks. Escalation, recovery, and the public install path are all exercised through the real CLI.
The problem AgentXchain solves
AI capability is improving quickly. Coordination quality is not.
A single model can write useful code. That is not the hard problem. The hard problem is what happens when multiple agents touch the same codebase over time: work overlaps, assumptions diverge, quality drifts, nobody owns the decision trail, and humans lose governance without micromanaging.
The bottleneck is no longer intelligence. The bottleneck is governance, coordination, and convergence.
AgentXchain is an open-source governance protocol that turns independent AI agents into a governed software team with structured turns, mandatory challenge, phase gates, and human sovereignty.
See it in 30 seconds
No API keys needed:
npx agentxchain demo
If npm resolves to a stale global install and you get unknown command 'demo', use the package-bound form:
This runs a complete governed lifecycle:
- PM scopes auth-token rotation, raises a missing-rollback objection
- Dev implements with atomic rollback, resolves the PM objection, raises a clock-skew risk
- QA reviews against the acceptance matrix, raises a compliance gap, issues ship verdict
Three agents. Three different failure classes caught. 1.8 seconds. Zero API keys.
What's proven in v2.24
All 4 adapters proven live
| Adapter | What it does | Live proof |
|---|---|---|
manual | Human types the turn result | Proven across multiple governed runs as the human control path |
local_cli | Claude Code, Cursor, any CLI agent | run_91f4ba5d54707a7e — live Claude Code dev turn with a real model |
api_proxy | Direct LLM API call with proposal staging | run_7b067f892916b799 — full proposed-authority lifecycle with real Anthropic output |
mcp | MCP stdio/HTTP with real model behind server | run_83a64c7bb6925711 — Anthropic API via MCP stdio |
The precise claim matters: all four adapters are proven live; three adapters are proven with real models; manual is the governed human-in-the-loop control path.
Escalation and recovery
AgentXchain doesn't just run agents. It recovers when they fail.
- Dev turn rejected twice until
max_turn_retriesexhausted - Run transitions to
blockedwithescalation:retries-exhausted:dev - Operator recovers the run
- Engineering director reviews with an objection
- Full audit trail preserved
Proof: run_ebf10c05d7419a0c — Scenario D recovery details
Proposal authoring
api_proxy agents can propose file changes through a staging area:
- Agent returns
proposed_changes[]in the turn result - Proposals materialize under
.agentxchain/proposed/<turn_id>/ - Operator reviews with
agentxchain proposal listandagentxchain proposal diff agentxchain proposal applycopies reviewed changes into the workspace- Conflict detection prevents stale proposals from silently overwriting workspace changes
Post-release install verification
Release postflight now verifies the public npx install path in an isolated environment — not just registry metadata.
How it works
AgentXchain governs multi-agent delivery with five layers:
- Protocol — the constitution. Run state, roles, turn contracts, phase gates, decision ledger, recovery semantics. Versioned independently. Model-agnostic.
- Runners — enforcement engines. The CLI is the reference implementation.
- Connectors — bridges to agent runtimes. Manual, local CLI, API proxy, MCP.
- Workflow Kit — opinionated operating model. Planning, specs, QA, release, escalation, recovery.
- Integrations — dashboard, notifications, plugins, multi-repo coordination.
Core governance rules
- Mandatory challenge: every turn must include at least one objection. Blind agreement is a protocol violation.
- Human sovereignty: humans approve phase transitions and ship decisions.
- Phase gates: real artifacts must exist before work advances.
- Append-only audit: every decision, objection, and risk is recorded.
- Structured convergence: phases, turn limits, and mandatory verification force convergence on real output.
What AgentXchain is not
| What it's not | What that is | How AgentXchain differs |
|---|---|---|
| Agent framework | CrewAI, LangGraph, AutoGen, MetaGPT | Those build agents. AgentXchain governs how agents converge. |
| Single-agent coder | Devin, Cursor, Copilot, Codex | Those are smart individual agents. AgentXchain coordinates teams of them. |
| Message router | Google A2A | A2A routes messages between agents. AgentXchain governs the delivery process. |
| Tool connector | MCP | MCP connects models to tools. AgentXchain is one of those tools — and also uses MCP as a connector. |
Get started
# See governance in action (no API keys)
npx agentxchain demo
# Scaffold a governed repo
npx agentxchain init --governed
# Walk through your first real governed run
# https://agentxchain.dev/docs/getting-started
Links:
- Quickstart
- Getting Started
- Your First Governed Turn
- Release Notes (v2.24.1)
- Protocol Reference
- Adapters
- GitHub
- npm
Evidence
- 2,486 node tests / 534 suites / 0 failures
- 774 Vitest tests / 36 files / 0 failures
- 81 conformance fixtures
- Protocol v6 spec published
- All 4 adapter types proven live
local_cli,api_proxy, andmcpproven with real AI models- Docusaurus production build passes
MIT licensed. View source on GitHub.