remem-ai 0.5.11

Persistent memory for Claude Code and Codex — single binary, automatic context
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod lifecycle;
mod matcher;
mod query;
#[cfg(test)]
mod tests;
mod types;
mod write;

pub use lifecycle::{
    auto_abandon_all_inactive, auto_abandon_all_inactive_at, auto_abandon_inactive,
    auto_pause_all_inactive, auto_pause_all_inactive_at, auto_pause_inactive,
    count_auto_abandon_all_inactive_at, count_auto_pause_all_inactive_at,
    DEFAULT_AUTO_ABANDON_DAYS, DEFAULT_AUTO_PAUSE_DAYS,
};
pub use matcher::find_matching_workstream;
pub use query::{query_active_workstreams, query_workstreams};
pub use types::{ParsedWorkStream, WorkStream, WorkStreamStatus};
pub use write::{update_workstream_manual, upsert_workstream};