Skip to main content

remem/
lib.rs

1#![allow(
2    clippy::too_many_arguments,
3    clippy::type_complexity,
4    clippy::manual_div_ceil
5)]
6
7pub mod adapter;
8pub mod ai;
9pub mod api;
10mod atomic_file;
11mod build_info;
12mod captured_git;
13pub mod cli;
14pub mod context;
15pub mod db;
16pub mod doctor;
17pub mod dream;
18pub mod eval;
19mod extraction_worker;
20mod git_evidence;
21pub mod git_trace;
22pub mod git_util;
23mod graph_candidate;
24mod hook_integrity;
25mod hook_stdin;
26pub mod identity;
27pub mod ingest;
28pub mod install;
29pub mod log;
30pub mod mcp;
31pub mod memory;
32mod memory_candidate;
33pub mod migrate;
34mod observation_extract;
35pub mod observe;
36pub mod perf;
37pub mod project_id;
38pub mod retrieval;
39pub mod rules;
40pub mod runtime_config;
41mod session_rollup;
42mod spill_queue;
43pub mod summarize;
44pub mod timeline;
45pub mod user_context;
46pub mod worker;
47pub mod workstream;