Skip to main content

agent_sdk_toolkit/shell/
mod.rs

1//! Concrete shell tool helpers layered over core policy and effect contracts. Use
2//! these modules only behind host approval, sandbox, timeout, and network policy.
3//! Execution starts host processes; request and policy types are data-only.
4//!
5mod command;
6mod executor;
7mod policy;
8mod types;
9
10pub use executor::ShellExecutor;
11pub use policy::ShellExecutionPolicy;
12pub use types::{ShellRequest, ShellResult};