ripmap 0.1.0

Ultra-fast codebase cartography for LLMs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Output rendering - from ranked tags to terminal/text output.
//!
//! Supports multiple rendering modes:
//! - Directory mode: hierarchical symbol overview with badges
//! - Tree mode: code snippets with syntax highlighting
//!
//! Optimizes for token budget via binary search.

mod colors;
mod directory;
mod tree;

pub use colors::{Badge, colorize};
pub use directory::DirectoryRenderer;
pub use tree::TreeRenderer;