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
10
11
12
13
//! Query routing, planning, and execution subsystem.

pub mod executor;
pub mod optimizer;
pub mod planner;
pub mod router;
pub mod types;

pub use executor::QueryExecutor;
pub use optimizer::QueryOptimizer;
pub use planner::MemoryPlanner;
pub use router::QueryRouter;
pub use types::{Query, QueryPlan, QueryResult, QueryResultData, QueryStep};