//! ZCLAW Memory Substrate //! //! SQLite-backed storage for agents, sessions, and memory. mod store; mod session; mod schema; pub mod fact; pub mod user_profile_store; pub mod trajectory_store; pub use store::*; pub use session::*; pub use schema::*; pub use fact::{Fact, FactCategory, ExtractedFactBatch}; pub use user_profile_store::{UserProfileStore, UserProfile, Level, CommStyle}; pub use trajectory_store::{ TrajectoryEvent, TrajectoryStore, TrajectoryStepType, CompressedTrajectory, CompletionStatus, SatisfactionSignal, };