claw-branch 0.1.2

Fork, simulate, and merge engine for ClawDB agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Simulation sandbox modules for isolated agent evaluation.

/// Sandbox cleanup helpers.
pub mod cleanup;
/// Isolated branch-backed simulation environments.
pub mod environment;
/// Sandbox result evaluators.
pub mod evaluator;
/// Scenario runner implementations.
pub mod runner;

pub use environment::{SandboxStatus, SimulationEnvironment, SimulationScenario};
pub use evaluator::{EvaluationReport, Recommendation, SandboxEvaluator};
pub use runner::SandboxRunner;