Skip to main content

eval_magic/
lib.rs

1//! `eval-magic` — a CLI for running skill evals: it measures whether an agent
2//! skill actually shifts behavior.
3//!
4//! The crate is organized into seven submodules, ordered roughly by dependency:
5//! `core` (domain types) underpins everything; `validation`, `adapters`,
6//! `sandbox`, `pipeline`, and `workspace` each own one concern; `cli` dispatches
7//! the subcommands and orchestrates `run`.
8
9pub mod adapters;
10pub mod cli;
11pub mod core;
12pub mod pipeline;
13pub mod sandbox;
14pub mod validation;
15pub mod workspace;