spool-memory 0.2.3

Local-first developer memory system — persistent, structured knowledge for AI coding tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use clap::Parser;
use std::path::PathBuf;

#[derive(Debug, Parser)]
#[command(name = "spool-daemon", version, about = "spool lifecycle daemon")]
struct DaemonCli {
    #[arg(long)]
    config: PathBuf,
}

fn main() -> anyhow::Result<()> {
    let cli = DaemonCli::parse();
    spool::daemon::serve_stdio(cli.config.as_path())
}