The Agent Client Protocol (ACP) is the open standard that Braide uses to talk to agents. You don't interact with it directly — this page is an overview of what it enables, so you can understand how your prompts reach an agent and how responses come back.
ACP follows a request-response pattern with real-time streaming:
The protocol defines several event types that appear in your session:
Each ACP session is bound to a single agent. The session maintains conversation history so the agent has context from previous exchanges. Multiple sessions can run concurrently with different agents.
The protocol allows Braide to attach arbitrary metadata when creating a session. This is how per-agent settings like tenant tags, debug flags, or feature toggles are delivered to an agent that knows how to read them.
You configure this metadata from the cog icon on each agent card in Settings > Agents. See Managing Agents > Additional Settings for how to set it from the UI.
Braide streams agent events to the browser in real time, so you see tool calls, messages, and permission requests appear the moment the agent emits them — no polling or page refresh required.
The same SSE channel also carries Braide-internal events such as
queue:added/queue:removed,attachments:image_added/_ready, andsession:idle. These are not part of the ACP standard — they're Braide's mechanism for keeping clients in sync with the server-owned queue and attachment state. See Prompt Queue & Attachments for the full event taxonomy.