ucm-observe 0.1.3

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

pub mod replay;
pub mod trace;

pub use replay::*;
pub use trace::*;