meerkat-core 0.8.9

Core agent logic for Meerkat (no I/O deps)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Typed session-local transcript revision-history graph.
//!
//! Extracted verbatim from `session.rs`; the extraction commit changes no
//! behaviour, only where the code lives.

pub(crate) mod decode_memo;
pub(crate) mod graph;
pub(crate) mod heal;
pub(crate) mod sealed;
pub(crate) mod validate;

pub use graph::{
    TranscriptHistoryState, TranscriptRevisionBody, TranscriptRewriteCommit,
    TranscriptRewriteRecord,
};
pub use sealed::ValidatedTranscriptHistory;