agent-sdk-toolkit 0.1.0-alpha.3

Optional tool-pack helpers layered over agent-sdk-core primitive contracts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Environment profile helpers layered over the core isolation contract.
//! These builders are data-only: they produce core `ExecutionEnvironment`
//! values, isolation sidecars, and network policy DTOs without starting
//! containers, opening sockets, or configuring host firewalls.
mod egress;
mod profile;
mod runtime;

pub use egress::{EgressAllowlist, EgressProtocol, EgressTarget};
pub use profile::{AgentWorkspaceEnvironment, AgentWorkspaceEnvironmentProfile};
pub use runtime::EnvironmentRuntime;