What problem does it solve? Navigating an unfamiliar or large codebase to find where a feature is implemented, where a bug originates, or how a function is used often requires slow manual file browsing. This Skill provides a structured search workflow that combines semantic search, grep patterns, and glob file discovery to pinpoint relevant code quickly. ## Core Features & Use Cases - Multi-Strategy Search: Combines semantic search for conceptual questions, grep for exact patterns, and glob for file discovery, with guidance on when to use each. - Call and Dependency Tracing: Step-by-step workflows for finding function definitions, all callsites, import relationships, and end-to-end feature traces from endpoint to database. - Impact Analysis: Procedures for mapping all usages and tests of a function before refactoring, plus git blame and git log integration for code archaeology. - Use Case: Before renaming a shared utility function, use the impact analysis workflow to find every callsite, related test, and dependent module so nothing breaks. ## Quick Start Ask the AI to find where user authentication is implemented in this repository and trace all of its callsites.