rust-memex 0.6.5

Operator CLI + MCP server: canonical corpus second: semantic index second to aicx
Documentation
// rust-memex
//
// The canonical custom Rust MCP kernel for RAG and long-term memory.
// This binary exposes the primary surface of the rust-memex engine.
//
// It supports two explicit transport modes:
// - stdio: Native MCP integration (e.g., for Claude Desktop)
// - HTTP/SSE: Multi-agent daemon mode
//
// `rust-memex` is the only supported binary name. The GitHub installer may
// also create `rust_memex` as a legacy compatibility symlink for older scripts.
//
// Usage:
//   rust-memex <command> [args]
//
// Vibecrafted with AI Agents by Vetcoders (c)2024-2026 Loctree

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

pub mod cli;
use crate::cli::definition::Cli;
use crate::cli::dispatch::run_command;

#[tokio::main]
async fn main() -> Result<()> {
    let cli = Cli::parse();
    run_command(cli).await
}