plugmem-cli 0.2.0

plugmem command-line interface — temporal memory for LLM agents over one file.
Documentation
1
2
3
4
5
6
7
8
9
//! `plugmem` — the CLI binary. A one-liner over [`plugmem_cli::run`]; all
//! logic (and its tests) live in the library so this file needs no
//! coverage.

use std::process::ExitCode;

fn main() -> ExitCode {
    plugmem_cli::run()
}