tmai_core/transcript/mod.rs
1//! JSONL Transcript Watcher for Claude Code conversation logs.
2//!
3//! Watches `~/.claude/projects/{hash}/{session}.jsonl` files for changes
4//! and provides parsed, rendered preview text for the Web UI.
5
6pub mod parser;
7pub mod renderer;
8pub mod types;
9pub mod watcher;
10
11pub use types::{TranscriptRecord, TranscriptState};
12pub use watcher::{TranscriptRegistry, TranscriptWatcher};