sandbox-agent 0.4.0-rc.1

Universal API for automatic coding agents in sandboxes. Supports Claude Code, Codex, OpenCode, and Amp.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(unix)]
mod unix;
#[cfg(windows)]
mod windows;

#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub struct StderrOutput {
    pub head: Option<String>,
    pub tail: Option<String>,
    pub truncated: bool,
    pub total_lines: Option<usize>,
}

#[cfg(unix)]
pub use unix::AgentServerLogs;
#[cfg(windows)]
pub use windows::AgentServerLogs;