clawdb 0.1.0

The cognitive database for AI agents — unified memory, semantic retrieval, branching, sync, and governance.
Documentation
1
2
3
4
5
6
7
8
9
//! Minimal plugin system.

pub mod events;
pub mod interface;
pub mod manager;

pub use events::ClawEvent;
pub use interface::ClawPlugin;
pub use manager::PluginManager;