What problem does it solve? Reading unfamiliar code is hard, and getting a full explanation dumped at once does not build the skill to trace code independently. This Skill walks through code one segment at a time, pausing at each step to explain not just what happens but how the next step was discovered, so users learn to navigate codebases on their own. ## Core Features & Use Cases - Segmented Walkthroughs: Traces code from a starting point (endpoint, function, value, or bug symptom) to a destination in 3-8 segments, pausing after each one. - Teaches Tracing Techniques: At every step it shares the concrete clue used to find the next location, such as git grep results, DI container wiring, or import path disambiguation, with copy-pasteable commands. - Interactive Pacing: Uses structured questions at each stop offering choices like continue, dig deeper, or try finding the next step yourself. - Use Case: A developer asks to trace what happens when an API endpoint is called. The Skill presents a route map, then walks layer by layer through validation, business logic, and persistence, explaining how each hop was located, until the user can repeat the trace alone. ## Quick Start Ask the assistant to walk you through what happens when a specific endpoint is called, tracing it step by step until the data is saved.