agentmem 0.1.1

Local-first memory engine for AI coding agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Main CLI binary for Agent Memory RS.
//!
//! This binary intentionally stays minimal.
//! All substantial logic belongs in the library crate so it can be:
//!
//! - tested
//! - reused
//! - embedded by other tools
//! - kept separate from process concerns

use std::process;

fn main() {
    let code = agentmem::cli::run();
    process::exit(code);
}