What problem does it solve? When an AI agent needs to find where specific logic lives in an unfamiliar codebase, broad manual searching wastes context tokens and time. This Skill acts as a read-only scout that fans out parallel searches and reports only the relevant file locations with line ranges, keeping the main agent's context clean. ## Core Features & Use Cases - Parallel Broad Search: Issues multiple Glob, Grep, and Read calls simultaneously to cover complementary hypotheses in a single turn. - Citation-Only Output: Returns a compact evidence block of path:line citations with relevance reasons, with no preamble or explanation. - Read-Only Guarantee: Never edits files, runs commands, or proposes solutions, so it is safe to delegate exploration freely. - Use Case: A solver agent needs to know where route selection happens in a large Go project. It delegates to this Skill, which replies with citations like src/router/pick.go:42-71 so the solver reads only what matters. ## Quick Start Ask the agent to find where a specific feature or symbol is implemented in this repository and report the file paths with line numbers.