lean-ctx 3.7.3

Context Runtime for AI Agents with CCP. 68 MCP tools, 10 read modes, 60+ compression patterns, cross-session memory (CCP), persistent AI knowledge with temporal facts + contradiction detection, multi-agent context sharing, LITM-aware positioning, AAAK compact format, adaptive compression with Thompson Sampling bandits. Supports 24+ AI tools. Reduces LLM token consumption by up to 99%.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Repo map: PageRank-based symbol importance ranking across a codebase.
//!
//! Provides a ranked view of the most structurally important symbols,
//! personalized by session context (recent files, focus files).

pub mod budget;
pub mod graph;
pub mod ranking;

pub use budget::fit_to_budget;
pub use graph::RepoGraph;
pub use ranking::rank_symbols;