shadow-diff 3.2.5

Behavior contracts for AI agents — tested in your PR, enforced at runtime. Core engine: parser, writer, content-addressed store, replay, and nine-axis behavioral differ.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Replay engine and the `LlmBackend` trait.
//!
//! See SPEC.md §10 for the lifecycle and SPEC §10 for the algorithm.

pub mod backend;
pub mod engine;
pub mod mock;

pub use backend::{LlmBackend, LlmError};
pub use engine::{run_replay, Clock, FixedClock, ReplayError};
pub use mock::MockLlm;