What problem does it solve? Single-pass codebase exploration typically reads only 6-10 files, producing incomplete understanding of features, bugs, or architecture. This Skill decomposes investigation topics and runs multiple parallel sub-agents to achieve far deeper file coverage. ## Core Features & Use Cases - Parallel Sub-Agent Exploration: Decomposes a topic into narrow focus areas and spawns a dedicated explore sub-agent for each, running them in parallel. - Deep Traversal Mode: Uses the search_subagent tool with the explore keyword to trigger recursive directory and file searching, covering 20-30+ tool calls per agent. - Unified Synthesis: Merges all sub-agent findings into a single cohesive summary with cross-references between areas. - Use Case: When asked "how does authentication work?", it spawns separate agents to explore session creation, middleware route protection, token issuance, and logout handling, then synthesizes the results. ## Quick Start Ask the agent to explore how a specific feature works in this codebase, such as "explore how the authentication flow works".