remem-ai 0.5.202

Local-first coding agent memory for Claude Code and OpenAI Codex
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub(super) fn project_filter_sql(param_idx: usize) -> String {
    crate::retrieval::memory_search::project_or_global_clause("m.project", param_idx)
}

pub(super) fn branch_filter_sql(param_idx: usize) -> String {
    format!("(m.branch = ?{param_idx} OR m.branch IS NULL)")
}

pub(super) fn status_filter_sql(include_inactive: bool) -> String {
    crate::memory::memory_current_filter_sql("m.status", "m.expires_at_epoch", include_inactive)
}