Skip to main content

ucm_observe/
lib.rs

1//! Observability layer — decision traces + replay debugger.
2//!
3//! Every reasoning decision is recorded as a structured trace.
4//! Traces can be replayed from the event log to verify determinism.
5//!
6//! This is what makes the system auditble. When a developer asks
7//! "why did the system recommend testing X?", the trace contains
8//! the full derivation chain.
9
10pub mod replay;
11pub mod trace;
12
13pub use replay::*;
14pub use trace::*;