tokensave 5.1.1

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
15
16
17
/// 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;

/// Cross-session cache backing `tokensave_read`.
pub mod read_cache;

/// Mode dispatchers (`full`, `lines`, `map`, `signatures`) for `tokensave_read`.
pub mod read_modes;

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