trusty-memory 0.1.58

MCP server (stdio + HTTP/SSE) for trusty-memory
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Per-subcommand handlers for the `trusty-memory` binary.
//!
//! Why: Keep CLI handlers out of `lib.rs` so the library surface stays focused
//! on MCP server code while the binary stays a thin clap-to-handler shim.
//! What: One submodule per subcommand. `serve` is wired directly to
//! `crate::run_stdio` / `crate::run_http` in `main.rs`; `migrate` rewrites
//! Claude settings to point at trusty-memory; `service` manages the macOS
//! launchd LaunchAgent; `setup` orchestrates first-time install (data dir +
//! launchd + Claude settings patch).
//! Test: Each submodule carries its own unit tests.

pub mod migrate;
pub mod monitor;
pub mod service;
pub mod setup;