ai_memory/forensic/mod.rs
1// Copyright 2026 AlphaOne LLC
2// SPDX-License-Identifier: Apache-2.0
3
4//! v0.7.0 L2-5 — forensic evidence bundle assembly + verification.
5//!
6//! This module is the OSS surface for the `AgenticMem Attest` tier:
7//! procurement-grade evidence packets that travel as a single signed
8//! tarball. The CLI verbs at [`crate::cli::export`] are thin wrappers
9//! around [`bundle::build`] / [`bundle::verify`]; the heavy lifting
10//! lives here so the substrate can be exercised from unit tests
11//! without spawning a subprocess.
12//!
13//! See [`bundle`] for the bundle layout, the manifest schema, the
14//! deterministic-tar invariants, and the per-file SHA-256 manifest.
15
16pub mod bundle;