cellz 0.2.1

SQLite-per-session, event-sourced state server for AI agents
Documentation
1
2
3
4
5
6
7
8
9
//! Per-cell actor, SQLite store, and activation manager.

pub mod actor;
pub mod db;
pub mod manager;

pub use actor::{CellActor, CellHandle};
pub use db::CellDb;
pub use manager::CellManager;