Skip to main content

acp_agent/runtime/
mod.rs

1//! Runtime helpers that the CLI and transports share when launching ACP agents.
2//!
3//! This module wires together preparation (downloading binaries, building
4//! command specs, tracking temporary extraction directories) with the
5//! subprocess primitives and transport implementations that surface an agent's
6//! stdio over different network protocols.
7/// Command construction and distribution-resolution helpers.
8pub mod prepare;
9/// Low-level child-process spawning and shutdown helpers.
10pub mod process;
11/// Shared serve entrypoint and transport selection types.
12pub mod serve;
13/// Direct stdio execution without a network transport.
14pub mod stdio;
15/// Concrete TCP, HTTP/2, and WebSocket transport implementations.
16pub mod transports;