remem-ai 0.6.17

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
17
pub(crate) mod compilation;
pub(crate) mod consolidation;
pub(crate) mod reinforcement;

mod command;
mod query;
mod render;
#[cfg(test)]
mod tests;

pub use command::{add_preference, list_preferences, remove_preference};
pub use query::{query_global_preferences, query_project_preferences};
pub use render::{
    dedup_with_claude_md, render_preferences, render_preferences_with_limits,
    render_preferences_with_limits_detailed, PreferenceRenderSummary,
};
pub(crate) use render::{render_preferences_with_context_details, PreferenceRenderDetails};