khive-pack-session 0.3.0

Session verb pack — store/list/get over the notes substrate (ADR-080)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Background live-mirror service for Claude Code and Codex CLI session transcripts.
//!
//! Exposes the three sub-modules and re-exports the public surface used by
//! `SessionPack::warm()` and tests.

pub mod ingest;
pub mod parse;
pub mod service;

pub use ingest::{MirrorSource, MirrorStats};
pub use parse::{parse_cc_line, parse_codex_line};
pub use service::{run_mirror_service, MirrorConfig};