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
//! Content-addressed filesystem blob store and SQLite index.
//!
//! See SPEC.md §8 and SPEC §8 (sharding) for the on-disk format.

pub mod fs;
pub mod sqlite;

pub use fs::{Store, StoreError};
pub use sqlite::{Index, IndexError, ReplayRecord, TraceRecord};