Skip to main content

synaps_cli/memory/
mod.rs

1//! Local-first memory store.
2//!
3//! Append-only JSONL records keyed by namespace, stored under
4//! `$SYNAPS_BASE_DIR/memory/<namespace>.jsonl`. No vector layer; queries
5//! are prefix/substring filters over tags and content with optional
6//! time-range and limit. Extensions access this via the `memory.append`
7//! and `memory.query` protocol methods (added in a follow-up step).
8
9pub mod store;