deepstrike-core 0.2.37

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

pub mod curator;
pub mod durable;
pub mod idle_pipeline;
pub mod semantic;
pub mod synthesis;
pub mod trace_analyzer;