explore-codebase
SKILL.md
Explore Codebase Skill
Pattern for exploring codebases efficiently with parallel subagents.
When to Load This Skill
- You need to understand parts of the codebase
- You're gathering context before making decisions
- You need to find patterns, conventions, or existing implementations
Exploration Strategy
For Quick Searches (Do Yourself)
Glob("**/*{keyword}*")
Grep(pattern="functionName", type="ts")
Use when looking for a specific thing.