claude-code-transcripts-ingest 0.1.12

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
10
11
12
13
14
15
//! 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 cost_decomp;
pub mod extract;
pub mod info;
pub mod parse;
pub mod pricing;
pub mod report;
pub mod run;
pub mod schema;
pub mod scope;
pub mod serve;
pub mod update;
pub mod version_check;