What problem does it solve?
Understanding a large codebase quickly is hard when you need to know where subsystems live, how files relate, and what to read next.
Core Features & Use Cases
- Subsystem-first codebase mapping: Provides a one-line, file-by-file index grouped by memory, context, hooks, runtime, agent, LLM, tools, and TUI.
- Navigation optimized for rapid comprehension: Helps you identify entry points and mental-model boundaries (e.g., how context assembly flows into memory selection and prompt construction).
- Use case: When you need to implement a feature or debug behavior, you can quickly find the exact Rust modules and related crates to inspect (such as the memory retrieval pipeline or the hook discovery mechanism).
Quick Start
Ask for the codebase map, then request the exact files you should read to understand how a specific capability works, such as "Where is the effective prompt assembled and how does it inject memory and hooks?"