claude-code-transcripts-ingest 0.1.9

CLI that ingests Claude Code transcript JSONL files into a DuckDB database for usage / cost analysis.
1
2
3
4
5
6
7
8
9
//! Library surface used by integration tests and re-used by main.rs.
//! The binary entry point still lives in main.rs.
pub mod cli;
pub mod info;
pub mod parse;
pub mod pricing;
pub mod run;
pub mod schema;
pub mod serve;