claw-core 0.1.2

Embedded local database engine for ClawDB — an agent-native cognitive database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Store modules for claw-core.
//!
//! The `store` module contains one sub-module per logical table in the
//! claw-core schema. Each sub-module exposes typed CRUD helpers that operate
//! through a shared [`sqlx::SqlitePool`].

pub mod active;
pub mod context;
pub mod memory;
pub mod session;
pub mod session_lifecycle;
pub mod tool_output;