claude-hindsight 2.0.0

20/20 hindsight for your Claude Code sessions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Execution tree analysis
//!
//! Builds hierarchical tree structures from flat JSONL execution nodes.

pub mod prompt_detect;
pub mod session_analytics;
pub mod simple_tree;
pub mod smart_label;
pub mod tree;

pub use session_analytics::SessionAnalytics;
pub use simple_tree::build_simple_tree;
pub use tree::TreeNode;