Skip to main content

agent_sdk_toolkit/environment/
mod.rs

1//! Environment profile helpers layered over the core isolation contract.
2//! These builders are data-only: they produce core `ExecutionEnvironment`
3//! values, isolation sidecars, and network policy DTOs without starting
4//! containers, opening sockets, or configuring host firewalls.
5mod egress;
6mod profile;
7mod runtime;
8
9pub use egress::{EgressAllowlist, EgressProtocol, EgressTarget};
10pub use profile::{AgentWorkspaceEnvironment, AgentWorkspaceEnvironmentProfile};
11pub use runtime::EnvironmentRuntime;