What problem does it solve? Grep and plain file reads are slow and inaccurate for symbol-level code work like finding where a method is defined, who calls it, or safely renaming it across a codebase. This Skill routes those tasks to LSP-backed code navigation tools that return precise, token-efficient results. ## Core Features & Use Cases - Symbol Lookup and Navigation: Find classes, methods, and functions by name path, get symbol overviews of unfamiliar files, and locate declarations, references, and implementations. - Safe Refactoring: Rename symbols across the codebase with LSP-aware updates, safely delete symbols after checking references, and verify edits with per-file diagnostics. - Project Memory: Persist per-project markdown notes (onboarding findings, architecture decisions) and recall them in later sessions. - Use Case: When tracing a bug through a call chain, find the entry-point symbol, list its referencing symbols, and repeat on each caller until you reach the controller or route boundary β all without reading entire files. ## Quick Start Activate the current project on the code navigation server, then find all references to the method UserService/authenticate.