remem-ai 0.5.155

Local-first coding agent memory for Claude Code and OpenAI Codex
Documentation
mod claim;
mod explain;
mod listing;
#[cfg(test)]
mod provider_fallback_tests;
mod runner;
mod source_anchor;
mod suppression_filter;
#[cfg(test)]
mod tests;
mod text;
pub(crate) 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,
    search_with_branch_explain_with_suppressed_policy, search_with_branch_with_suppressed_policy,
};
pub(crate) use source_anchor::apply_score_demotions;
pub(crate) use weights::SearchWeights;