khive-pack-session 0.5.0

Session verb pack - store/list/resume/export over the notes substrate
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::{LineTailSource, MirrorSource, MirrorStats};
pub use parse::{parse_cc_line, parse_codex_line};
pub use service::{run_mirror_service, MirrorConfig};