remem-ai 0.6.50

Local-first coding agent memory for Claude Code and OpenAI Codex
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub(crate) mod common;
mod memory;
mod observation;

pub(crate) use memory::usage_rank::usage_hits_for_retrieved_candidates;
pub(crate) use memory::{
    apply_score_demotions, search_with_branch_explain_details_with_suppressed_policy,
    search_with_branch_weights, SearchWeights,
};
pub use memory::{
    search, search_with_branch, search_with_branch_explain, search_with_branch_explain_details,
    search_with_branch_explain_with_suppressed_policy, search_with_branch_with_suppressed_policy,
    ChannelContribution, ChannelContributionBreakdown, ChannelHit, SearchExplain,
    SearchExplainChannel, SearchExplainDetails, SearchExplainResult, SearchExplainResultBreakdown,
};
pub use observation::search_observations;