acp-agent 0.0.0

CLI for discovering, installing, launching, and proxying ACP agents from the public registry
Documentation
1
2
3
4
5
6
7
8
9
10
//! Network transports that expose an agent's stdio streams to remote clients.
//!
//! Each transport lives in a separate module because they target different
//! protocols (`tcp`, WebSocket, HTTP/2) while reusing the shared prepared command.
/// HTTP/2 full-duplex byte-stream transport.
pub mod h2;
/// Raw TCP byte-stream transport.
pub mod tcp;
/// WebSocket + JSON-RPC transport built on `jsonrpsee`.
pub mod ws;