Codebase Symbol Map Generator Generate a semantic symbol map showing where all exports, classes, functions, and interfaces are defined. This eliminates guessing with by providing precise locations. When to Use - Starting work on an unfamiliar codebase - Before large-scale refactoring - When needing to understand code structure - To avoid text-matching confusion (same name in comments/strings) Execution Run the generator script: The script will: 1. Detect project language (TypeScript/JavaScript/Python/Rust/Go) 2. Extract all exported symbols with their locations 3. Generate a markdown map at O…