1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
pub mod ambient;
pub mod analytics;
#[cfg(feature = "embeddings")]
pub mod ann;
pub mod answerability;
/// S5.1: retrieval backend trait + FlatBackend implementation.
pub(crate) mod backend;
/// S5.4: cross-backend benchmark harness (flat / graph-lite / petgraph).
pub mod backend_bench;
pub mod benchmark;
pub mod bitemporal;
pub mod blame;
pub mod conflict;
pub mod conflicts;
pub mod consolidate;
pub mod context;
/// Flagship 1 / Pass B / Story 1.1+1.2+1.6: repo digest builder + cache + ROI.
pub mod digest;
pub mod drift;
pub mod dropped_capsule;
pub mod embeddings;
/// Flagship 1 / Story 1.3: episodic work-resume capture, storage, and surface.
pub mod episode;
pub mod eval;
pub mod fact_query;
pub mod fact_store;
pub mod fact_values;
pub mod facts;
pub mod feedback;
pub mod framing;
/// #2 knowledge graph: rule-based relation-edge extraction for `memory_edges`.
pub mod fusion;
pub mod graph;
pub mod graph_build;
pub mod ingest;
pub mod inject_policy;
/// F3 Flagship 3: Lifecycle & forgetting — Stories 3.1–3.4.
pub mod lifecycle;
pub mod lock;
pub mod maintain;
pub mod maintenance;
pub mod migrate;
pub mod ordering;
pub mod packs;
pub mod project;
pub mod projector;
pub mod redact;
pub mod reindex;
pub mod reinforce;
pub mod roi;
pub mod schema;
pub(crate) mod scoring;
pub mod serving;
pub mod skill_synthesis;
/// Epic S3: personal brain sync — event-log replication.
pub mod sync;
pub mod trace;
pub mod trust;
pub mod tune;
pub mod tuneset;
pub mod user_brain;
pub mod user_profile;
#[cfg(test)]
mod hardening_evidence_tests;