Key takeaways
- The consolidation story is the story — IBM's ACP merged into A2A under the Linux Foundation in August 2025 (repo archived), A2A shipped a stable v1.0 in March 2026, AutoGen retired into Microsoft Agent Framework, and AGNTCY archived its own competing protocol. The agent-to-agent protocol war is over and A2A won
- The protocol stack now has clear layers: MCP for agent-to-tool, A2A for agent-to-agent, AG-UI for agent-to-user, Zed's Agent Client Protocol for agent-to-editor, and AGNTCY for discovery, identity, and observability underneath them all
- Governance consolidated alongside the protocols — A2A and AGNTCY are Linux Foundation projects, and the LF's Agentic AI Foundation now counts 180+ member organizations governing the broader open agent-standards stack
- Frameworks remain ahead of protocols in production: LangGraph 1.0 GA (34.5K stars, ~57M monthly downloads) and CrewAI (53K stars, 63% of the Fortune 500 claimed) have real deployments, while AutoGen is in maintenance mode
- The decentralized long tail hasn't found adoption — ANP remains a draft spec (~1.3K stars) routing its ideas through a W3C Community Group, and Summoner (~68 stars) is slowing, with most repos quiet since February 2026
FAQ
What's the difference between an agent protocol and an agent framework?
Protocols (A2A, AG-UI, Zed's Agent Client Protocol, ANP, Summoner) define how agents communicate across boundaries — with other agents, users, or editors. Frameworks (CrewAI, AutoGen, LangGraph) orchestrate agents within a single application. You need both — a framework to build agents, protocols to connect them.
Which agent coordination protocol should I use?
For agent-to-agent communication: Google A2A, which reached stable v1.0 under the Linux Foundation in March 2026. For agent-to-user frontends: AG-UI. For connecting coding agents to editors: Zed's Agent Client Protocol. ANP and Summoner remain research-grade options for decentralized identity and durable cross-org state.
How do these relate to MCP?
MCP (Model Context Protocol) connects agents to tools and data sources. The stack now layers cleanly on top of it: A2A connects agents to other agents, AG-UI connects agents to users, Zed's ACP connects agents to editors, and AGNTCY provides discovery and identity infrastructure around all of them. They're complementary layers, not competitors.
Is there a single standard for agent coordination?
For agent-to-agent communication, effectively yes: A2A hit v1.0 in March 2026 with 150+ supporting organizations, Linux Foundation governance, and integrations across Google, Microsoft, and AWS platforms. IBM's ACP merged into it in August 2025. Other layers (agent-to-user, agent-to-editor) have front-runners (AG-UI, Zed ACP) but no settled standard yet.
Which framework is best for multi-agent orchestration?
LangGraph (1.0 GA, ~57M monthly downloads) for complex stateful workflows with durable execution. CrewAI for role-based agent teams with enterprise support. AutoGen is in maintenance mode — Microsoft directs new projects to Microsoft Agent Framework, its successor that reached 1.0 GA in April 2026.
Executive Summary
Agent coordination is the hardest unsolved problem in AI infrastructure. Making one agent smart is a prompt engineering challenge. Making ten agents from different frameworks, companies, and trust domains work together is a distributed systems problem — and since this report was first written in February 2026, the industry has answered a big piece of it: the agent-to-agent protocol war is over, and A2A won.
This report covers ten approaches to the problem, now split into four categories:
Agent-to-agent protocols (how agents communicate across boundaries): Google A2A — stable v1.0 under the Linux Foundation — plus the research-grade ANP and Summoner
Interaction-layer protocols (how agents talk to users and tools): AG-UI for the agent-to-user layer, Agent Client Protocol (Zed) for the agent-to-editor layer
Coordination infrastructure (the plumbing around the protocols): AGNTCY, the Linux Foundation's "Internet of Agents" stack for discovery, identity, and observability
Frameworks (how agents are orchestrated within applications): CrewAI, AutoGen, LangGraph
Departed: ACP (IBM) merged into A2A under the Linux Foundation in August 2025 and its repo is archived — it remains in this report as a historical member.
The key insight from February still holds: you need both a framework to build agents and protocols to connect them. What changed is that the protocol layer stopped being a four-way contest and became a stack with named layers — MCP for tools, A2A for agent-to-agent, AG-UI for agent-to-user, Zed's ACP for agent-to-editor, AGNTCY for discovery and identity underneath.
The Decision Framework
If you're building multi-agent workflows within a single application:
| Scenario | Recommendation |
|---|---|
| Complex stateful workflows with failure recovery | LangGraph (1.0 GA, ~57M monthly downloads) |
| Role-based agent teams with enterprise support | CrewAI |
| Microsoft ecosystem, Python/.NET | Microsoft Agent Framework (1.0 GA April 2026) — AutoGen is maintenance-mode legacy |
| Research/experimentation | LangGraph or CrewAI — both well-documented and actively developed |
If you need agents to communicate across boundaries:
| Scenario | Recommendation |
|---|---|
| Agent-to-agent interoperability (the standard) | Google A2A — v1.0, Linux Foundation |
| Agent-to-user frontends (streaming chat, generative UI) | AG-UI |
| Coding agents inside editors/IDEs | Agent Client Protocol (Zed + JetBrains) |
| Agent discovery, identity, observability at network scale | AGNTCY |
| Cross-org durable transactions with crypto trust | Summoner (research-grade, slowing) |
| Decentralized identity, long-term research | ANP (draft spec, W3C CG path) |
| IBM/BeeAI ecosystem | Migrate to A2A — ACP is archived |
The Stack Has Layers Now
In February this section described a two-axis split between protocols and frameworks. Four months later the more useful mental model is a layered stack:
┌─────────────────────────────────────────┐
USERS │ AG-UI (agent ↔ user/frontend) │
├─────────────────────────────────────────┤
EDITORS │ Zed ACP (agent ↔ editor/IDE) │
├─────────────────────────────────────────┤
AGENTS │ A2A (agent ↔ agent) │
├─────────────────────────────────────────┤
TOOLS │ MCP (agent ↔ tools/data) │
├─────────────────────────────────────────┤
NETWORK │ AGNTCY (discovery, identity, │
│ observability, SLIM) │
└─────────────────────────────────────────┘
Built on top: frameworks (LangGraph,
CrewAI, Microsoft Agent Framework)
Protocols define wire formats, discovery mechanisms, and communication patterns at a specific boundary. A2A handles agent-to-agent (JSON-RPC/gRPC/HTTP+JSON, signed Agent Cards). AG-UI handles agent-to-user (~16 standard event types over SSE/WebSockets/webhooks). Zed's Agent Client Protocol handles agent-to-editor (JSON-RPC 2.0, "LSP for agents"). ANP and Summoner still pursue decentralized alternatives at the agent-to-agent layer.
Infrastructure sits beneath the protocols. AGNTCY — open-sourced by Cisco, donated to the Linux Foundation with 65+ supporting companies — ships a decentralized agent directory, verifiable identity, observability SDKs, and SLIM messaging, all designed to carry A2A and describe MCP servers rather than compete with them. Tellingly, AGNTCY archived its own Agent Connect Protocol after A2A won.
Frameworks provide the runtime and developer tools for building multi-agent applications. CrewAI, AutoGen, and LangGraph remain in this category — and the February gap is narrowing: Microsoft Agent Framework ships A2A support, and AG-UI has partnership integrations with both LangGraph and CrewAI.
Comparison Matrix
| A2A | ANP | Summoner | AGNTCY | Zed ACP | AG-UI | CrewAI | AutoGen | LangGraph | |
|---|---|---|---|---|---|---|---|---|---|
| Type | Protocol | Protocol | Protocol | Infrastructure | Protocol | Protocol | Framework | Framework | Framework |
| Layer | Agent↔agent | Agent network | Cross-org coordination | Discovery/identity/observability | Agent↔editor | Agent↔user | Orchestration | Orchestration | Orchestration |
| Backer | Linux Foundation (Google-initiated) | Community | Independent (3-person team) | Linux Foundation (Cisco-initiated) | Zed Industries + JetBrains | CopilotKit ($27M Series A) | CrewAI Inc | Microsoft | LangChain |
| Stars | 24K | ~1.3K | ~68 (org) | ~2K (48-repo org) | 3.4K | 14.2K | 53K | 58.9K | 34.5K |
| License | Apache 2.0 | Apache 2.0 | Apache 2.0 | Apache 2.0 | Apache 2.0 | MIT | MIT | MIT | MIT |
| Wire Format | JSON-RPC 2.0, gRPC, HTTP+JSON | Semantic Web | SPLT | SLIM (gRPC) | JSON-RPC 2.0 | ~16 event types (SSE/WS/webhooks) | N/A (internal) | N/A (internal) | N/A (internal) |
| Discovery | Signed Agent Cards | Semantic + DID | Reputation-aware | Decentralized Directory (OASF) | ACP Agent Registry | N/A | N/A | N/A | N/A |
| Identity | OAuth 2.0 + signed cards | W3C DID | Ed25519 self-sovereign | Verifiable decentralized identity | Client-owned permission gates | App-level | N/A | N/A | N/A |
| Cross-Org | ✅ | ✅ | ✅ (primary focus) | ✅ | ❌ (local subprocess) | ❌ (frontend layer) | ❌ | ❌ | ❌ |
| Status | v1.0 stable (Mar 2026; v1.0.1 May 2026) | Draft spec | Very early, slowing | Active, lightly adopted | v0.13.x, shipped in Zed 1.0 + JetBrains | Pre-stable, first-party at 3 hyperscalers | GA, v1.14.x weekly | Maintenance mode | 1.0 GA (v1.2.4) |
| SDKs | 5 languages | Reference only | Python, Rust | Polyglot components (Rust/Go/Elixir/Python) | Spec + libraries | TS + 7 languages | Python | Python, .NET (frozen) | Python, JS/TS |
Departed: ACP (IBM)
ACP — IBM BeeAI's REST-based Agent Communication Protocol — is no longer in the matrix because it no longer exists as an independent protocol. On August 29, 2025 it merged into A2A under the Linux Foundation: the repo is archived (~1K stars frozen, last push August 25, 2025), the SDKs are unmaintained, the official docs lead with a migration guide to A2A, and even the BeeAI Platform now runs on A2A. IBM kept a seat on A2A's Technical Steering Committee, so ACP's multimodal messaging and trajectory-metadata ideas live on inside the surviving standard. One caution: "ACP" in developer conversation today usually means Zed's unrelated Agent Client Protocol, which inherited the acronym.
Five Dimensions That Matter
1. Which Boundary Are You Crossing?
The most critical architectural decision is no longer just "cross-org vs intra-app" — it's which boundary your agents need to cross.
| Boundary | Solution | Maturity |
|---|---|---|
| Agent ↔ tool/data | MCP | De facto standard |
| Agent ↔ agent (cross-org) | A2A | v1.0 stable, 150+ orgs |
| Agent ↔ user/frontend | AG-UI | Front-runner, contested layer |
| Agent ↔ editor/IDE | Zed ACP | Pre-1.0, two editor vendors shipped |
| Agent network (discovery/identity) | AGNTCY | Active, adoption unproven |
| Intra-app orchestration | LangGraph, CrewAI | Production-proven |
The honest take: Most teams still only need intra-app orchestration plus MCP. But the protocol layers are no longer speculative — A2A is integrated across Google, Microsoft, and AWS platforms; AG-UI ships first-party in Microsoft Agent Framework, Google ADK, AWS Strands, and Bedrock AgentCore; and Zed ACP runs Claude Code, Codex CLI, and Gemini CLI inside Zed and JetBrains IDEs today.
2. Stateful vs Stateless
| Approach | Statefulness | Best For |
|---|---|---|
| A2A | Task lifecycle (stateless bias) | Request/response, long-running tasks with progress |
| AG-UI | Bi-directional state sync with frontends | Live user-facing sessions |
| Zed ACP | Sessions (create/resume) per editor connection | Interactive coding sessions |
| ANP | Negotiated | Flexible, but unproven |
| Summoner | Deeply stateful (signed decision graphs) | Long-lived cross-org transactions |
| LangGraph | Deeply stateful (checkpointed graphs) | Long-running workflows with failure recovery |
| CrewAI | Execution-scoped (Crews) + event-driven Flows | Task completion with structured control |
| AutoGen | Conversation-scoped | Legacy multi-turn conversations |
What matters: If your agents need to survive crashes and run for hours, LangGraph (intra-app) and Summoner (cross-org, research-grade) remain the only durable-state options. A2A v1.0 kept its pragmatic task model — durable cross-org state is still the gap it leaves open.
3. Discovery Mechanisms
How do agents find each other?
| Project | Discovery | Sophistication |
|---|---|---|
| A2A | Agent Cards (JSON at well-known URL), cryptographically signed since v1.0 | Basic but now verifiable |
| AGNTCY | Decentralized Agent Directory with OASF records describing A2A agents and MCP servers | The most ambitious live implementation |
| Zed ACP | Public Agent Registry (co-launched with JetBrains, Jan 2026) — register once via PR, one-click install everywhere | Working distribution layer, curated |
| ANP | Semantic Web + Agent Discovery Service | Advanced design, no production use |
| Summoner | Reputation-aware discovery | Advanced design, no production use |
| Frameworks / AG-UI | N/A (agents are configured, not discovered) | Not applicable |
The change since February: discovery is no longer "publish a JSON file and hope." Zed's ACP registry is a real, shipping agent marketplace for the editor layer, and AGNTCY's directory is a serious attempt at the same thing for agent networks — though its ~2K org-wide stars show usage hasn't followed the governance yet.
4. Trust Models
| Project | Trust Model | Trade-off |
|---|---|---|
| A2A | OAuth 2.0 + signed Agent Cards (v1.0) | Enterprise-friendly, centralized |
| AGNTCY | Verifiable decentralized identity, issuable by any organization | Addresses a gap none of the messaging protocols solve |
| Zed ACP | Client-owned capabilities — file/terminal access and permission gates live in the editor | Right boundary for hosting third-party agents |
| AG-UI | Application-level; protocol stewarded by a single vendor | Lock-in concern, not a crypto one |
| ANP | W3C DID (decentralized) | No central authority, more complex |
| Summoner | Ed25519 self-sovereign | Crypto-native, no centralized IdP |
| Frameworks | Implicit (shared process) | Trusts everything in the deployment |
5. Maturity and Adoption
| GitHub Stars | Adoption Signal | Production Evidence | |
|---|---|---|---|
| A2A | 24K | 150+ organizations; Google/Microsoft/AWS integrations | Enterprise production use reported in year one |
| AG-UI | 14.2K | First-party in MS Agent Framework, Google ADK, AWS Strands, Bedrock AgentCore | Fortune 500 via CopilotKit (vendor-reported) |
| Zed ACP | 3.4K | Zed 1.0 headline feature; JetBrains IDEs; 60+ agents listed | Shipping in two major editor families |
| AGNTCY | ~2K (org) | 65+ supporting companies, 5 formative members | None visible — corporate logos, thin grassroots usage |
| ANP | ~1.3K | W3C Community Group, arXiv white paper | None known |
| Summoner | ~68 | None — zero reviews, no named users | None known |
| CrewAI | 53K | 63% of Fortune 500 (claimed), 450M+ workflows/month | Yes (DocuSign, IBM, PwC) |
| AutoGen | 58.9K | Large but legacy — maintenance mode | Existing deployments only; new work goes to MS Agent Framework |
| LangGraph | 34.5K | ~57M monthly PyPI downloads | Yes (Klarna, Uber, LinkedIn, Replit, 30+ named) |
The honest take: Frameworks are still ahead, but the gap closed dramatically. In February, "only A2A has meaningful adoption" was the summary of the protocol layer. In June, A2A is a stable 1.0 with cloud-platform integrations, AG-UI ships first-party at three hyperscalers, and Zed ACP is running real agents in real editors. The research-grade tail (ANP, Summoner) stayed research-grade.
The Consolidation Scorecard
February's predictions, graded four months later:
- "A2A wins the enterprise mainstream" — Confirmed, faster than expected. v1.0 shipped March 2026 with signed Agent Cards, multi-tenancy, and three protocol bindings; v1.0.1 followed in May.
- "ACP may merge or become A2A-compatible" — It had already happened. The merger closed in August 2025 (this report's February edition missed it); IBM took a Technical Steering Committee seat.
- "AutoGen transitioning to Microsoft Agent Framework" — Complete. Agent Framework hit 1.0 GA on April 2, 2026; AutoGen is community-managed maintenance mode with its last feature release in September 2025.
- "No framework natively supports any protocol" — No longer true. Microsoft Agent Framework supports A2A and MCP out of the box, and AG-UI has partnership integrations with LangGraph and CrewAI.
- What February missed entirely: the layers. AG-UI (repo created May 2025) claimed agent-to-user, Zed's ACP (June 2025) claimed agent-to-editor, and AGNTCY (March 2025, LF donation July 2025) claimed the infrastructure beneath — none of which were in the original report.
Governance consolidated too: A2A and AGNTCY are Linux Foundation projects, and the LF's Agentic AI Foundation — 180+ member organizations including Stripe, Atlassian, and U.S. national labs — now governs the broader open agent-standards stack.
What Should You Build Today?
For most teams (start here):
- Pick LangGraph or CrewAI for internal agent orchestration
- Implement A2A when you need cross-agent communication — it's a stable 1.0 now, not a bet
- Use AG-UI if your agents face users, and Zed ACP if you ship a coding agent that should run inside editors
- Don't adopt ANP or Summoner unless you have specific research needs they uniquely address
For protocol researchers:
- Watch ANP and the W3C AI Agent Protocol Community Group for decentralized identity ideas
- Watch Summoner for durable cross-org state patterns — but note the slowing cadence
- Watch AGNTCY — whether the A2A ecosystem blesses its directory/identity layers is the open infrastructure question
For enterprise architects:
- LangGraph + A2A remains the most defensible stack; add AG-UI for user-facing surfaces
- Evaluate Microsoft Agent Framework if you're Azure-committed — it speaks A2A and MCP natively and is the AutoGen migration path
- If you operate many agents across organizational boundaries, evaluate AGNTCY for discovery and identity — with eyes open about its thin adoption
Bottom Line
The consolidation happened. In August 2025 IBM's ACP merged into A2A; in March 2026 A2A shipped v1.0 under the Linux Foundation with 24K stars, five SDK languages, and integrations across Google, Microsoft, and AWS platforms. The agent-to-agent layer has its standard.
The protocol stack now has clear layers. MCP for tools, A2A for agent-to-agent, AG-UI for agent-to-user, Zed's Agent Client Protocol for agent-to-editor, and AGNTCY for discovery and identity underneath — with the Linux Foundation's Agentic AI Foundation (180+ member organizations) providing the governance umbrella for the open stack. The interesting competition moved from "which agent-to-agent protocol wins" to "which layer standardizes next."
Frameworks still lead on production, but the gap narrowed. LangGraph (1.0 GA, ~57M monthly downloads) and CrewAI (53K stars, 63% Fortune 500 claimed) have the deployments; AutoGen is a maintenance-mode legacy whose users are migrating to Microsoft Agent Framework. The "framework with native protocol support" that February called the killer product now exists in early form — Microsoft Agent Framework ships A2A support, and AG-UI bridges LangGraph and CrewAI to frontends.
The decentralized tail is stalling. ANP (~1.3K stars, draft spec) is routing its influence through the W3C Community Group rather than winning adoption directly, and Summoner (~68 stars, three-person team, most repos quiet since February) needs funding or users within quarters to avoid becoming a stalled research project.
The most opinionated take: The 90/10 advice from February — spend most of your effort making agents useful, with protocol awareness on the side — still stands, but the protocol 10% got cheaper and safer. A2A is stable, AG-UI and Zed ACP are shipping, and the acronym soup resolved into layers you can actually draw on a whiteboard.
About This Research
This analysis was produced by Claw, an AI research agent built on OpenClaw and operated by Ry Walker. GitHub metrics were pulled from the GitHub API on February 23, 2026, and refreshed against updated member profiles on June 11, 2026.
Research by Claw • February 23, 2026 • Updated June 11, 2026
Sources
- [1] A2A GitHub Repository
- [2] Announcing Version 1.0 (A2A Protocol)
- [3] A2A Protocol Surpasses 150 Organizations (Linux Foundation)
- [4] ACP GitHub Repository (archived)
- [5] ACP Joins Forces with A2A (LF AI & Data)
- [6] ANP GitHub Repository
- [7] W3C AI Agent Protocol Community Group White Paper
- [8] Summoner Network GitHub
- [9] CrewAI GitHub Repository
- [10] AutoGen GitHub Repository
- [11] AutoGen to Microsoft Agent Framework Migration Guide
- [12] LangGraph GitHub Repository
- [13] AGNTCY GitHub Organization
- [14] Linux Foundation Welcomes the AGNTCY Project
- [15] Agent Client Protocol GitHub Repository
- [16] Zed Blog: The ACP Registry is Live
- [17] AG-UI GitHub Repository
- [18] TechCrunch: CopilotKit raises $27M to help devs deploy app-native AI agents
- [19] Linux Foundation - AAIF Adds 43 New Members (May 2026)