remem-ai 0.6.88

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
mod auth;
// SP880-T1 lands shared primitives before the T2-T4 handlers consume them.
#[allow(dead_code)]
pub(crate) mod cursor;
mod handlers;
mod helpers;
#[allow(dead_code)]
pub(crate) mod mutation;
mod read_resources;
mod server;
#[cfg(test)]
mod tests;
mod types;

pub use auth::{ensure_api_token, load_api_token};
pub use server::{build_router, run_api_server};
pub use types::DbState;