1pub mod ambient;
2pub mod analytics;
3#[cfg(feature = "embeddings")]
4pub mod ann;
5pub mod answerability;
6pub(crate) mod backend;
8pub mod backend_bench;
10pub mod benchmark;
11pub mod bitemporal;
12pub mod blame;
13pub mod conflict;
14pub mod conflicts;
15pub mod consolidate;
16pub mod context;
17pub mod digest;
19pub mod drift;
20pub mod dropped_capsule;
21pub mod embeddings;
22pub mod episode;
24pub mod eval;
25pub mod fact_query;
26pub mod fact_store;
27pub mod fact_values;
28pub mod facts;
29pub mod feedback;
30pub mod framing;
31pub mod fusion;
33pub mod graph;
34pub mod graph_build;
35pub mod ingest;
36pub mod inject_policy;
37pub mod lifecycle;
39pub mod lock;
40pub mod maintain;
41pub mod maintenance;
42pub mod migrate;
43pub mod ordering;
44pub mod packs;
45pub mod project;
46pub mod projector;
47pub mod redact;
48pub mod reindex;
49pub mod reinforce;
50pub mod roi;
51pub mod schema;
52pub(crate) mod scoring;
53pub mod serving;
54pub mod skill_synthesis;
55pub mod sync;
57pub mod trace;
58pub mod trust;
59pub mod tune;
60pub mod tuneset;
61pub mod user_brain;
62pub mod user_profile;
63
64#[cfg(test)]
65mod hardening_evidence_tests;