vct-core 2.3.1

Vibe Coding Tracker core library - parse local AI coding assistant session data into CodeAnalysis results
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Collection and projection of normalized analysis sessions.
//!
//! Provider-specific parsing stays in [`crate::session`]. This module collects
//! those [`crate::models::CodeAnalysis`] values into the canonical batch JSON
//! dataset, then projects the same values into the compact summaries rendered
//! by the TUI, text, and table views.
pub mod aggregator;
pub mod summary;

pub use aggregator::*;
pub use summary::*;