Skip to main content

shadow_core/agentlog/
mod.rs

1//! `.agentlog` record types, canonical JSON, content hashing, parser, writer.
2//!
3//! Implements SPEC §3-§6: the record envelope, payload variants,
4//! canonical JSON serialisation, SHA-256 content addressing, and the
5//! streaming JSONL parser/writer.
6
7pub mod canonical;
8pub mod hash;
9pub mod parser;
10pub mod record;
11pub mod writer;
12
13pub use record::{Kind, Record, CURRENT_VERSION};