ripmap 0.1.0

Ultra-fast codebase cartography for LLMs
Documentation
//! Ranking pipeline - from tags to importance scores.
//!
//! The ranking system combines:
//! - PageRank on the symbol/file reference graph
//! - Contextual boosts (chat files, mentions, temporal coupling)
//! - Git-based weighting (recency, churn)
//! - Focus expansion via graph traversal
//! - Intent-driven recipe selection

mod boosts;
mod bridges;
mod coupling;
mod focus;
mod git;
mod intent;
mod pagerank;
mod symbols;

pub use boosts::BoostCalculator;
pub use bridges::BridgeDetector;
pub use coupling::TestCouplingDetector;
pub use focus::FocusResolver;
pub use git::{FileStats, GitWeightCalculator};
pub use intent::IntentClassifier;
pub use pagerank::PageRanker;
pub use symbols::SymbolRanker;