What problem does it solve? Reading entire files to find a single class or function wastes context tokens and slows down code exploration. This Skill uses pre-built structural indexes to pinpoint exact line ranges of symbols, reducing token consumption by 60-80% during codebase navigation. ## Core Features & Use Cases - Symbol Search: Find classes, functions, methods, interfaces, types, and enums by name with case-insensitive matching and type filters. - File Structure Inspection: Display all symbols in a file with their line ranges and signatures before reading any code. - Index Validation: Check whether cached line numbers are still accurate after file changes, with watch mode for automatic index updates. - Use Case: When asked to fix a login bug, run a symbol search for "login" to get the exact file and line range of the handler, then read only those lines instead of scanning the whole file. ## Quick Start Ask the agent to find where the UserService class is defined using codemap and read only its relevant lines.