What problem does it solve?
An efficient, centralized way to query a Python codebase's codemap: module imports, symbol definitions, and function call graphs to accelerate code exploration and refactoring.
Core Features & Use Cases
- Module-level queries: central, coupled, deps, rdeps, path to understand import relationships across modules.
- Symbol-level queries: symbol, symbols, find-symbol to locate definitions and navigate code without opening every file.
- Function-level queries: fn-deps, fn-rdeps, fn-central, fn-blast to analyze call graphs and identify hot paths for debugging and optimization.
- Use Case: quickly surface the most interconnected modules or the most frequently called functions in a Python project to guide refactoring decisions.
Quick Start
Ask the AI to query the codemap index and surface module, symbol, and function graphs for a Python project.