1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! Memory abstraction — persistent agent state. //! Inspired by ZeroClaw's pluggable memory + NanoClaw's per-group isolation. pub mod brief; pub mod context_inject; pub mod embeddings; pub mod graph; pub mod principal; pub mod recall; pub mod search; pub mod session_note; pub mod surreal; pub mod traits; #[cfg(feature = "zkr-memory")] pub mod zkr; pub use traits::MemoryBackend;