source-search
Installation
SKILL.md
Source Search
When to Use
- You need to locate where a symbol, string, env var, or error code is defined or referenced across the codebase.
Rules
- Read-only: do not modify files.
- Prefer
grepfor broad discovery, then targetedreadfor the best matches. - Narrow with glob patterns to reduce noise.
Workflow
- Identify exact search keys and likely variants.
- Glob by folder or pattern to limit scope.
- Grep and rank results by relevance.
- Return top matches with
path:lineand a short note.