deepstrike_core/memory/mod.rs
1//! Offline memory consolidation (the "dream" pipeline) plus its FFI payload types.
2//!
3//! The kernel side is pure computation: `idle_pipeline` drives
4//! `trace_analyzer` → `synthesis` → `curator` over session transcripts fed in
5//! by the SDK. Storage, embeddings, and retrieval I/O live in the SDKs.
6//! Working-context memory management (paging, pressure) is `crate::mm`.
7
8pub mod curator;
9pub mod durable;
10pub mod idle_pipeline;
11pub mod semantic;
12pub mod synthesis;
13pub mod trace_analyzer;