1#![doc = include_str!("../README.md")]
2
3#[cfg(feature = "analytics")]
4pub mod analytics;
5pub mod error;
6pub mod log;
7pub mod model;
8pub mod store;
9pub mod transcript;
10
11pub use error::{SessionLogError, SessionStoreError};
12pub use log::{SessionLine, SessionLog, SessionLogEntry};
13pub use model::{SessionControlEvent, SessionEvent, SessionMeta, UserEvent, last_agent_from_events};
14pub use store::{
15 DiscoveredSessionFile, FileFingerprint, ScanLimits, SessionStore, SessionSummary, discover_session_files,
16};
17pub use transcript::{context_from_events, conversation_messages_from_events};