tokensave 4.3.0

Code intelligence tool that builds a semantic knowledge graph from Rust, Go, Java, Scala, TypeScript, Python, C, C++, Kotlin, C#, Swift, and many more codebases
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Graph traversal algorithms for the code graph.
pub mod traversal;

/// Query operations for analyzing the code graph.
pub mod queries;

/// Structural health analysis algorithms.
pub mod health;

/// Git integration helpers for churn analysis.
pub mod git;

pub use queries::{GraphQueryManager, NodeMetrics};
pub use traversal::GraphTraverser;