orchestrator_runner/lib.rs
1//! Command runner, sandbox, output capture, and network allowlist.
2//!
3//! This crate provides the execution engine used by the agent orchestrator
4//! for spawning commands inside optional sandbox profiles, capturing and
5//! sanitizing output streams, and validating network allowlists.
6
7#![deny(missing_docs)]
8
9/// Command runner abstractions, policies, and spawn helpers.
10pub mod runner;
11/// Output capture utilities for spawned commands.
12pub mod output_capture;
13/// Sandbox network allowlist parsing and validation.
14pub mod sandbox_network;