What problem does it solve? Engineers often need to understand how an unfamiliar subsystem works before changing it, but manually tracing code paths across many files is slow and error-prone. This Skill answers "how does X work" questions by exploring the codebase and producing a senior-engineer-level architectural explanation. ## Core Features & Use Cases - Complexity Assessment: Routes simple questions to a single-pass explainer and complex subsystem questions to parallel explorer agents followed by a synthesis pass. - Structured Explanations: Produces explanations with Overview, Key Concepts, How It Works, Where Things Live, and Gotchas sections, including mermaid or ASCII diagrams when flows involve multiple components. - Placement and Layering Questions: Answers "where should this live", "which package owns this", and "is this the right layer" questions in addition to walkthroughs. - Use Case: Before modifying a sync engine spanning several services, ask how it works and receive a mental model covering entry points, data flow, key abstractions, and non-obvious pitfalls. ## Quick Start Ask how the authentication flow in this repository works from login request to session creation.