remem-ai 0.3.8

Persistent memory for Claude Code — single binary, zero subprocesses
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod actions;
mod cwd;
mod dispatch;
mod types;
#[cfg(test)]
mod tests;

use anyhow::Result;
use clap::Parser;

use types::Cli;

pub async fn run() -> Result<()> {
    dispatch::run_cli(Cli::parse()).await
}