# ACP Flow The `computer acp serve` bridge makes a remote machine agent look like a local ACP server over stdio. ## Basic shape 1. The local client starts `computer acp serve --agent --name `. 2. The bridge handles ACP initialization on stdin/stdout. 3. The bridge maps ACP session operations onto Agent Computer session APIs. 4. Remote session updates are streamed back as ACP `session/update` notifications. ## Good commands ```bash computer acp serve my-box --agent claude --name research computer acp serve gpu-worker --agent claude --name experiment ``` ## Recommended client behavior - Reuse a stable session name when reconnecting. - Treat the bridge as the single local command for remote-agent interaction. - Use the normal `computer agent ...` commands outside ACP when you need manual inspection or cleanup.