Elevator pitch
What are you proposing to change?With ACP, we aim to move fast while keeping breaking changes to a minimum. However, we’ve gotten to a point where there are enough changes we would like to do that would benefit from some core redesigns that will allow for extending the protocol with new features more easily. We’ve also managed to add new features that have led to learnings that would benefit from consolidation and alignment in other areas of the protocol to smooth things out and make things more consistent.
Status quo
How do things work today and what problems does this cause? Why would we change things?We have had a fairly successful time adding new features via new capabilities and adding in new features in a non-breaking way. But some of the learnings we have made will require breaking changes, and it feels like there are enough of these built up, or RFDs we are stuck due to required changes that now is a good time to do so.
What we propose to do about it
What are you proposing to improve the situation?
Current Active RFDs
Current RFDs with active maintainer focus that are targeting the v2 release- New Prompt Lifecycle
- Enum Variant Extension
- Required Session Methods
- Session Resume Replay
- Client Filesystem and Terminal Execution Surface
- Terminal Output
- Plan Variants
- Tool Call Updates
- Diff File States
- Permission Requests
- Message Updates and Chunks
- Remote Transports
v2 Changes
- Remove the dedicated session modes API from v2. This includes the
modessession response fields,session/set_mode,current_mode_update, and theSessionMode*types. - Agents should expose mode-like and model-related state through Session Config Options instead of dedicated mode or model selector APIs.
- Remove the v1 Client filesystem and terminal execution surface from v2. This includes
clientCapabilities.fs, the top-levelclientCapabilities.terminalfield,fs/*methods,terminal/*methods, and the Client-owned semantics of v1 terminal tool-call content. Terminal authentication remains separate undercapabilities.auth.terminal. - Add Agent-owned, display-only terminal output. Tool calls reference terminals by
terminalId; terminal upserts carrycommand, absolutecwd, replay snapshots, and exit status; terminal output chunks append independently base64-encoded bytes. The display surface is baseline v2 and does not add Client execution or control methods. - Make plan variants the default v2 plan shape by replacing the old
plansession update with item-basedplan_update. - Replace the v1 split between
tool_callandtool_call_updatewith a single tool-call update upsert shape keyed bytoolCallId. - Add tool-call content chunks so Agents can stream individual
ToolCallContentitems that append to a tool call. - Replace the v1
DiffoldText/newTextshape with diff file states: optional Git--patchtext (git_patch) plus structured file operations for add, delete, modify, move, copy, and non-text changes. - Make permission requests carry a required prompt
titleand optional extensiblesubjecttagged union. Tool-call permissions usesubject.type: "tool_call"with the sameToolCallUpdatepayload shape as session updates, command permissions usesubject.type: "command"with the command, required absolute working directory, and optional display associations, and subject-less permissions rely on the common prompt fields. - Add whole-message updates for
user_message,agent_message, andagent_thoughtalongside streamed chunks. Message updates are upserts keyed bymessageId; theircontentarrays replace current message content, while chunks append to the current content. - Require message IDs on streamed message chunks.
- Follow JSON-RPC 2.0 batch request and notification behavior.
- Clean up capability naming and organization:
- Use a single
capabilitiesfield in bothinitializeparams and results, replacing the v1-styleclientCapabilitiesandagentCapabilitiesfields. - Require implementation metadata in both
initializeparams and results with a single role-agnosticinfofield, replacing the v1-styleclientInfoandagentInfofields so agent-to-agent and other symmetric ACP connections do not need role-specific field names. - Group authentication methods under
auth/*: v2 usesauth/loginandauth/logoutinstead of v1’s top-levelauthenticateandlogoutmethod names. An Agent that returns one or more valid entries inauthMethodsadvertises the authentication surface and MUST implement both methods; if the field is omitted or empty, Clients MUST NOT call either method. There is nocapabilities.auth.logoutsupport marker, andcapabilities.authremains orthogonal for authentication-related extensions. The generated request and response type names follow the grouped method naming asLoginAuthRequest/LoginAuthResponseandLogoutAuthRequest/LogoutAuthResponse. - Use concise capability group names such as
sessionandauth, replacing names likesessionCapabilities. - Make
sessionoptional so non-session agents, such as NES-only agents, can omit it. - Require the baseline session lifecycle methods when
sessionis present:session/new,session/list,session/resume,session/close,session/prompt,session/cancel, andsession/update. - Remove
session/loadfrom v2.session/resumehandles both no-replay resume and full replay by using the optionalreplayFromcursor from the Session Resume Replay RFD. - Move optional session-scoped capability groups under
session, includingpromptandmcpassession.promptandsession.mcp. - Represent support markers as capability objects instead of booleans. Supplying
{}means supported, while omission ornullmeans unsupported. Booleans remain appropriate for actual data or configuration inside an already-advertised capability.
- Use a single
- Align MCP server transports with the current MCP transport model:
- Remove the deprecated HTTP+SSE MCP transport from v2.
- Make stdio an explicit
session.mcp.stdiocapability so Agents that cannot launch local subprocesses can opt out. - Require MCP server configurations to include a
typediscriminator, includingtype: "stdio", so unknown future transports can be preserved as extension/future variants. - Keep HTTP as the remote MCP server transport capability.
- Unify ID naming and typing across the v2 schema. Protocol fields should use domain-specific ID names such as
messageId,toolCallId,planId,providerId, andserverIdrather than a genericidwhenever the field identifies a protocol entity or references another resource.
RFDs to be Written
Changes under consideration that still need to be drafted or moved to draft:- MCP: tool timeouts, more lifecycle methods
Shiny future
How will things play out once this feature exists?There is a lot of work to do, especially on the SDK side, to support both versions, but it is likely that we should be able to allow Agents specifically to target v2 APIs and gracefully fall back to v1 messages for v1 clients, to avoid huge support issues. However, once all of this work is in place, it should be much easier to make additional breaking changes in the future when necessary, we’ve been kind of letting this build up given the effort required for the entire ecosystem, but the ACP maintainers will be charting a course forward to make this as smooth as possible!
Implementation details and plan
Tell me more about your implementation. What is your detailed implementation plan?
v2 + v1 Schema publishing
I created the initial draft of the v2 schema as a direct duplicate of v1. The side-by-side Rust types still make the schema differences explicit as v2 evolves. The Rust schema does not provide cross-version conversion. Even initialize-request normalization depends on SDK routing policy, while many v2 lifecycle and update semantics require state that a schema-level conversion cannot supply. SDKs supporting both versions should expose explicit versioned implementations or build a purpose-specific adapter at their runtime boundary. Once we have more pieces in place, we can start publishing both schemas to assist SDK developers to start figuring out how to support this. This should be done in an opt-in, off by default, clearly labeled unstable way for SDK consumers. There will likely be bumps as we figure out the necessary plumbing and we shouldn’t be shipping v2 in production without feature flags prior to a more stable release as we align all of the necessary pieces.SDK Support
With the needed breaking changes, as much as possible I am targeting having a consistent API surface for Agents, since they will want to target v2 APIs but still support v1 clients. Because of how the version negotiation works, if we can achieve the same thing for clients that will be great, but if not, they will at least be provided clear version entry points.Frequently asked questions
What questions have arisen over the course of authoring this document or during subsequent discussions?
Revision history
- 2026-07-20: Clarified
git_patchand renamed its payload fromdifftotext. - 2026-07-20: Clarified that
idlemeans ready for a new prompt while background updates may continue; steering and queueing remain separate concerns. - 2026-07-20: Scoped the v2 authentication surface to Agents that return one or more valid
authMethods; those Agents must implement bothauth/loginandauth/logout, while omission or an empty array means Clients must not call either method. - 2026-07-14: Added the v2 Terminal Output RFD for Agent-owned, display-only terminal output.
- 2026-07-02: Added the v2 Diff File States RFD for renderable git patches, structured file operations, and non-text file changes.
- 2026-07-02: Moved the v2 RFD collection to Active.
- 2026-07-02: Added the v2 Permission Requests RFD for required permission titles, optional structured subjects, and tool-call permission subjects.
- 2026-07-02: Added the v2 Session Resume Replay RFD and recorded that
session/resumereplacessession/loadin v2 by using optionalreplayFromcursors. - 2026-07-02: Added the v2 Required Session Methods RFD and recorded that
session/list,session/resume, andsession/closeare baseline whensessionis present. - 2026-06-30: Recorded the v2 ID unification principle: prefer domain-specific ID field names.
- 2026-06-25: Recorded the v2 initialize information cleanup: required role-agnostic
infoin both params and results, replacingclientInfoandagentInfo. - 2026-06-25: Recorded the v2 authentication method cleanup: grouped
auth/loginandauth/logoutmethod names replace v1’s top-levelauthenticateand capability-gatedlogout, with matching generated type names for login and logout auth requests and responses. - 2026-06-09: Added tool-call content chunks for streaming individual
ToolCallContentitems. - 2026-06-09: Added the v2 Message Updates and Chunks RFD to define whole-message upserts alongside streamed message chunks.
- 2026-06-08: Added the v2 Tool Call Updates RFD to make
tool_call_updatethe single upsert-style tool-call session update. - 2026-06-05: Recorded the v2 capability cleanup: unified initialize capability fields, optional
sessionsupport for NES-only agents, session-scopedpromptandmcpcapabilities, object-shaped support markers, explicitsession.mcp.stdio, removal of deprecated MCP SSE transport, and tagged MCP server transport configs. - 2026-06-02: Recorded the v2 decision to follow JSON-RPC 2.0 batch request and notification behavior.
- 2026-06-02: Recorded the v2 decision to remove Client filesystem and terminal execution capabilities, methods, and Client-owned terminal tool-call content.
- 2026-06-02: Added the v2 Plan Variants RFD to make item-based
plan_updatethe default v2 plan shape. - 2026-06-01: Recorded that model selection should remain represented by session config options instead of a dedicated selector API.
- 2026-05-28: Recorded the v2 decision to remove session modes in favor of session config options
- 2026-05-06: Initial draft