orchestrator-runner 0.2.5

Command runner, sandbox, output capture, and network allowlist
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Command runner, sandbox, output capture, and network allowlist.
//!
//! This crate provides the execution engine used by the agent orchestrator
//! for spawning commands inside optional sandbox profiles, capturing and
//! sanitizing output streams, and validating network allowlists.

#![cfg_attr(
    not(test),
    deny(clippy::panic, clippy::unwrap_used, clippy::expect_used)
)]
#![deny(missing_docs)]

/// Output capture utilities for spawned commands.
pub mod output_capture;
/// Command runner abstractions, policies, and spawn helpers.
pub mod runner;
/// Sandbox network allowlist parsing and validation.
pub mod sandbox_network;