1 2 3 4 5 6 7 8 9 10 11
//! Agent mode: Lightweight, secure, embeddable code sandbox for AI agents. //! //! Provides session-based WASM sandbox management with REST API //! for LLM agent integration. Each session gets isolated WASI //! filesystem, environment, and output buffers. pub mod api; pub mod executor; pub mod server; pub mod session; pub mod tools;