remem-ai 0.5.211

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
pub(crate) fn package_version() -> &'static str {
    env!("CARGO_PKG_VERSION")
}

pub(crate) fn binary_schema_version() -> i64 {
    crate::migrate::latest_schema_version()
}

pub(crate) fn version_label() -> String {
    format!(
        "{} (schema v{})",
        package_version(),
        binary_schema_version()
    )
}