What problem does it solve? When an agent faces a cold-start codebase or a failed direct search, it wastes tokens reading files one by one. This Skill performs broad, parallel read-only exploration and reports only where the relevant code lives, keeping exploration reads out of the main context. ## Core Features & Use Cases - Parallel Broad Search: Fans out Glob, Grep, and Read calls in a single turn to cover complementary hypotheses about where code lives. - Citation-Only Output: Returns a compact evidence block of path:START-END lines with short relevance reasons, never editing files or proposing solutions. - Honest Fallback: Replies with "no relevant locations found" instead of guessing when nothing relevant exists. - Use Case: A solver agent needs to know where route selection logic lives in an unfamiliar Go project. Delegate the question, and receive citations like src/router/pick.go:42-71 without polluting the solver's token budget. ## Quick Start Ask the explorer to find where the authentication middleware is defined in this repository and return only file paths with line ranges.