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