What problem does it solve? Understanding how a piece of code actually runs requires manually tracing entry points and call chains across files, which is slow and error-prone. This Skill combines a college-level conceptual explanation with a concrete runtime trace of the code in your own codebase. ## Core Features & Use Cases - Concept Explanation: Explains what the thing is at college level, defining terminology inline with path/to/file.ext:LINE citations on every claim. - Call Path Tracing: Lists every entry point that reaches the code in an entry-points table. - Call Tree Rendering: Shows an indented, execution-ordered call tree where every node carries a clickable file:line reference. - Use Case: Ask "explain how authentication works end to end" and receive both a conceptual explanation of the auth mechanism and the exact call path from HTTP handler down to the database query. ## Quick Start Ask the assistant to explain a concept in your codebase and show how it runs, for example: explain the request retry logic and show me its full call flow.