What problem does it solve? Cold-start exploration of an unfamiliar codebase wastes tokens and time when an agent reads files one by one. This Skill performs fast, read-only repository searches and returns only compact file:line citations, keeping the main conversation context clean. ## Core Features & Use Cases - Parallel Broad Search: Issues multiple Glob, Grep, and Read calls in parallel to cover complementary hypotheses in a single turn. - Citation-Only Output: Returns strictly one path:START-END citation per line with a short relevance note, with no preamble or summary. - Honest Fallback: Reports "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 a large Go codebase. Delegate the question, and receive citations like src/router/pick.go:42-71 without any search noise entering the main conversation. ## Quick Start Ask the explorer to find where a specific feature or symbol is implemented in this repository and return only file:line citations.