remem-ai 0.5.96

Persistent memory for Claude Code and OpenAI Codex coding agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod claim;
mod explain;
mod listing;
mod runner;
mod source_anchor;
#[cfg(test)]
mod tests;
mod text;
mod usage_rank;
mod weights;

pub use explain::{
    ChannelContribution, ChannelHit, SearchExplain, SearchExplainChannel, SearchExplainResult,
};
pub(crate) use runner::search_with_branch_weights;
pub use runner::{search, search_with_branch, search_with_branch_explain};
pub(crate) use source_anchor::apply_score_demotions;
pub(crate) use weights::SearchWeights;