Skip to main content

echo_execution/
lib.rs

1//! # echo_execution
2//!
3//! Execution layer: sandbox, skills, and tools.
4//!
5//! This crate contains the low-level runtime for:
6//! - multi-layer sandbox execution (Local / Docker / K8s)
7//! - file-based skill loading, activation, hooks, and script execution
8//! - tool registry / execution primitives shared by higher-level agent crates
9
10pub mod sandbox;
11pub mod skills;
12pub mod tools;