tokensave 4.0.2

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
/// Builds AI-ready context from the code graph.
pub mod builder;

/// Formats task context as Markdown or JSON.
pub mod formatter;

/// Re-ranking of search candidates using structural signals.
pub mod ranking;

pub use builder::{extract_symbols_from_query, ContextBuilder};
pub use formatter::{format_context_as_json, format_context_as_markdown};