1//! Session recording lifecycle management. 2//! 3//! Handles start/stop recording, file locking, crash recovery, 4//! command capture via shell hooks, and NDJSON persistence. 5 6pub mod capture; 7pub mod state; 8 9pub use capture::*; 10pub use state::*;