oneharness-core 0.3.0

Reusable engine behind the oneharness CLI: harness registry, hook rendering/installation, and harness config sync.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Pure core: no process, filesystem, env, clock, or terminal I/O lives here.
//! These modules build commands, shape the report, and parse output; all real
//! I/O stays behind the `io` and `commands` boundaries.

pub mod batch;
pub mod config;
pub mod gate;
pub mod harness;
pub mod hooks;
pub mod mode;
pub mod normalize;
pub mod report;
pub mod shim;
pub mod signals;
pub mod structured;
pub mod sync;