shadow-diff 3.2.4

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
12
13
//! `.agentlog` record types, canonical JSON, content hashing, parser, writer.
//!
//! Implements SPEC §3-§6: the record envelope, payload variants,
//! canonical JSON serialisation, SHA-256 content addressing, and the
//! streaming JSONL parser/writer.

pub mod canonical;
pub mod hash;
pub mod parser;
pub mod record;
pub mod writer;

pub use record::{Kind, Record, CURRENT_VERSION};