agent-sdk-toolkit 0.1.0-alpha.4

Optional tool-pack helpers layered over agent-sdk-core primitive contracts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Concrete shell tool helpers layered over core policy and effect contracts. Use
//! these modules only behind host approval, sandbox, timeout, and network policy.
//! Execution starts host processes; request and policy types are data-only.
//!
mod command;
mod executor;
mod policy;
mod types;

pub use executor::ShellExecutor;
pub use policy::ShellExecutionPolicy;
pub use types::{ShellRequest, ShellResult};