lethe-claude-code 0.9.0

Claude Code adapter for the lethe memory store. Helpers used only by the plugin under `plugins/claude-code/` (transcript parsing, etc.). Not required to use lethe itself.
//! `lethe-claude-code` — Claude Code adapter binary.
//!
//! Helpers the plugin under `plugins/claude-code/` needs that don't
//! belong in `lethe-core`. Today: parsing Claude Code's JSONL
//! transcripts. Lives here so `lethe` itself stays
//! framework-agnostic.

#![allow(clippy::print_stdout)]

use clap::{Parser, Subcommand};

mod transcript;

#[derive(Parser, Debug)]
#[command(
    name = "lethe-claude-code",
    version,
    about = "Claude Code adapter for the lethe memory store."
)]
struct Cli {
    #[command(subcommand)]
    cmd: Cmd,
}

#[derive(Subcommand, Debug)]
enum Cmd {
    /// Extract a user/assistant turn from a Claude Code JSONL transcript.
    Transcript {
        path: String,
        /// Surface a specific user-turn UUID (default: last pair).
        #[arg(long)]
        turn: Option<String>,
    },
}

fn main() -> std::process::ExitCode {
    let cli = Cli::parse();
    let rc = match dispatch(cli) {
        Ok(code) => code,
        Err(e) => {
            eprintln!("error: {e}");
            1
        }
    };
    std::process::ExitCode::from(u8::try_from(rc).unwrap_or(1))
}

fn dispatch(cli: Cli) -> anyhow::Result<i32> {
    match cli.cmd {
        Cmd::Transcript { path, turn } => transcript::run(&path, turn.as_deref()),
    }
}