clawdb 0.1.2

The cognitive database for AI agents — unified memory, semantic retrieval, branching, sync, and governance.
Documentation
1
2
3
4
5
6
7
8
9
//! Session management: creation, validation, and context.

pub mod context;
pub mod manager;
pub mod store;

pub use context::SessionContext;
pub use manager::{ClawDBSession, SessionManager};
pub use store::SessionStore;