synwire_agent/sandbox/mod.rs
1//! Sandbox implementations for command execution, process management, and archive handling.
2//!
3//! These are distinct from VFS providers — they handle operations that go beyond
4//! filesystem abstraction (shell execution, process lifecycle, archive manipulation).
5
6pub mod archive;
7pub mod pipeline;
8pub mod process;
9pub mod shell;
10pub mod threshold_gate;
11
12pub use archive::ArchiveManager;
13pub use pipeline::PipelineExecutor;
14pub use process::ProcessManager;
15pub use shell::Shell;
16pub use threshold_gate::ThresholdGate;