Skip to main content

lean_ctx/core/repomap/
mod.rs

1//! Repo map: PageRank-based symbol importance ranking across a codebase.
2//!
3//! Provides a ranked view of the most structurally important symbols,
4//! personalized by session context (recent files, focus files).
5
6pub mod budget;
7pub mod graph;
8pub mod ranking;
9
10pub use budget::fit_to_budget;
11pub use graph::RepoGraph;
12pub use ranking::rank_symbols;