This document describes how the QCortex ACP (Agent Client Protocol) bridge works, how it maps ACP sessions to Gateway sessions, and how IDEs should invoke it.
qcortex acp exposes an ACP agent over stdio and forwards prompts to a running
QCortex Gateway over WebSocket. It keeps ACP session ids mapped to Gateway
session keys so IDEs can reconnect to the same agent transcript or reset it on
request.
Key goals:
- Minimal ACP surface area (stdio, NDJSON).
- Stable session mapping across reconnects.
- Works with existing Gateway session store (list/resolve/reset).
- Safe defaults (isolated ACP session keys by default).
Use ACP when an IDE or tooling speaks Agent Client Protocol and you want it to drive a QCortex Gateway session.
Quick steps:
- Run a Gateway (local or remote).
- Configure the Gateway target (
gateway.remote.url+ auth) or pass flags. - Point the IDE to run
qcortex acpover stdio.
Example config:
qcortex config set gateway.remote.url wss://gateway-host:18789
qcortex config set gateway.remote.token <token>Example run:
qcortex acp --url wss://gateway-host:18789 --token <token>ACP does not pick agents directly. It routes by the Gateway session key.
Use agent-scoped session keys to target a specific agent:
qcortex acp --session agent:main:main
qcortex acp --session agent:design:main
qcortex acp --session agent:qa:bug-123Each ACP session maps to a single Gateway session key. One agent can have many
sessions; ACP defaults to an isolated acp:<uuid> session unless you override
the key or label.
Add a custom ACP agent in ~/.config/zed/settings.json:
{
"agent_servers": {
"QCortex ACP": {
"type": "custom",
"command": "qcortex",
"args": ["acp"],
"env": {}
}
}
}To target a specific Gateway or agent:
{
"agent_servers": {
"QCortex ACP": {
"type": "custom",
"command": "qcortex",
"args": [
"acp",
"--url",
"wss://gateway-host:18789",
"--token",
"<token>",
"--session",
"agent:design:main"
],
"env": {}
}
}
}In Zed, open the Agent panel and select “QCortex ACP” to start a thread.
- ACP client spawns
qcortex acpand speaks ACP messages over stdio. - The bridge connects to the Gateway using existing auth config (or CLI flags).
- ACP
prompttranslates to Gatewaychat.send. - Gateway streaming events are translated back into ACP streaming events.
- ACP
cancelmaps to Gatewaychat.abortfor the active run.
By default each ACP session is mapped to a dedicated Gateway session key:
acp:<uuid>unless overridden.
You can override or reuse sessions in two ways:
- CLI defaults
qcortex acp --session agent:main:main
qcortex acp --session-label "support inbox"
qcortex acp --reset-session- ACP metadata per session
{
"_meta": {
"sessionKey": "agent:main:main",
"sessionLabel": "support inbox",
"resetSession": true,
"requireExisting": false
}
}Rules:
sessionKey: direct Gateway session key.sessionLabel: resolve an existing session by label.resetSession: mint a new transcript for the key before first use.requireExisting: fail if the key/label does not exist.
ACP listSessions maps to Gateway sessions.list and returns a filtered
summary suitable for IDE session pickers. _meta.limit can cap the number of
sessions returned.
ACP prompt inputs are converted into a Gateway chat.send:
textandresourceblocks become prompt text.resource_linkwith image mime types become attachments.- The working directory can be prefixed into the prompt (default on, can be
disabled with
--no-prefix-cwd).
Gateway streaming events are translated into ACP message and tool_call
updates. Terminal Gateway states map to ACP done with stop reasons:
complete->stopaborted->cancelerror->error
qcortex acp resolves the Gateway URL and auth from CLI flags or config:
--url/--token/--passwordtake precedence.- Otherwise use configured
gateway.remote.*settings.
- ACP sessions are stored in memory for the bridge process lifetime.
- Gateway session state is persisted by the Gateway itself.
--verboselogs ACP/Gateway bridge events to stderr (never stdout).- ACP runs can be canceled and the active run id is tracked per session.
- ACP bridge uses
@agentclientprotocol/sdk(currently 0.13.x). - Works with ACP clients that implement
initialize,newSession,loadSession,prompt,cancel, andlistSessions.
- Unit:
src/acp/session.test.tscovers run id lifecycle. - Full gate:
pnpm build && pnpm check && pnpm test && pnpm docs:build.
- CLI usage:
docs/cli/acp.md - Session model:
docs/concepts/session.md - Session management internals:
docs/reference/session-management-compaction.md