Orchestrates comprehensive codebase research by decomposing user queries into parallel sub-agent tasks and synthesizing findings. This skill should be used when users ask questions about how code works, where functionality exists, how components interact, or need comprehensive documentation of existing implementations. It focuses exclusively on documenting and explaining the codebase as it exists today. Initial prompt: "I'm ready to research the codebase..."
This skill enables comprehensive codebase research through parallel sub-agent orchestration. It decomposes research questions into focused sub-tasks, executes them in parallel for efficiency, and synthesizes findings into structured research documents.
THE ONLY JOB IS TO DOCUMENT AND EXPLAIN THE CODEBASE AS IT EXISTS TODAY.
Do NOT:
DO:
When this skill is invoked, respond:
"I'm ready to research the codebase. Please provide your research question or area of interest, and I'll analyze it thoroughly by exploring relevant components and connections."
| Agent | Purpose | When to Use |
|-------|---------|-------------|
| codebase-locator | Finds files by topic/feature | Need to locate all files related to a feature |
| codebase-analyzer | Traces implementation with file:line refs | Need to understand how code works |
| codebase-pattern-finder | Finds code patterns with examples | Need to see how patterns are implemented |
| Agent | Purpose | When to Use |
|-------|---------|-------------|
| docs-locator | Finds docs, ADRs, design documents | Need to find documentation about a topic |
| docs-analyzer | Extracts decisions and specs from docs | Need to understand documented decisions |
| Agent | Purpose | When to Use |
|-------|---------|-------------|
| web-search-researcher | Researches external documentation | Explicitly requested or need external context |
Read any files directly mentioned by the user completely (without limit/offset parameters) before spawning sub-tasks. This establishes baseline context.
Analyze the research question considering:
Create a research plan using TodoWrite with specific investigation areas.
Use the Task tool to spawn parallel sub-agents. Match agents to research needs:
For "Where is X? questions:
Task(subagent_type="codebase-locator", prompt="Find all files related to [topic]...")
For "How does X work?" questions:
Task(subagent_type="codebase-analyzer", prompt="Trace the implementation of [feature]...")
For "How should I implement X?" questions:
Task(subagent_type="codebase-pattern-finder", prompt="Find patterns for [type] including examples...")
For "Why was X done this way?" questions:
Task(subagent_type="docs-locator", prompt="Find design docs and ADRs related to [topic]...")
Task(subagent_type="docs-analyzer", prompt="Extract decisions and rationale for [topic]...")
For external documentation needs (only if explicitly requested):
Task(subagent_type="web-search-researcher", prompt="Research [library/API] documentation for [topic]...")
Spawn multiple agents in parallel (single message with multiple Task tool calls) for efficiency.
Wait for all sub-agents to complete using AgentOutputTool, then compile results with:
Create a structured research document with the following format:
# Research: [Topic]
**Date:** YYYY-MM-DD
**Branch:** [current branch]
**Commit:** [current commit hash]
## Research Question
[The original question being investigated]
## Summary
[2-3 paragraph executive summary of findings]
## Detailed Findings
### [Finding Category 1]
[Detailed explanation with code references]
### [Finding Category 2]
[Detailed explanation with code references]
## Code References
| Component | File | Purpose |
|-----------|------|---------|
| [Name] | `path/to/file.ts:line` | [What it does] |
## Architecture
[How components interact - can include ASCII diagrams]
## Historical Context
[Relevant decisions from documentation, if any]
## Related Files
- `path/to/related1.ts` - [Purpose]
- `path/to/related2.ts` - [Purpose]
## Open Questions
- [Any unresolved questions or areas needing further investigation]
Present the research document to the user. For follow-up questions:
| Question Pattern | Primary Agent | Supporting Agents | |-----------------|---------------|-------------------| | "Where is X implemented?" | codebase-locator | - | | "How does X work?" | codebase-analyzer | codebase-locator | | "How is X typically done here?" | codebase-pattern-finder | codebase-locator | | "Why was X designed this way?" | docs-analyzer | docs-locator, codebase-analyzer | | "What are all the files for X?" | codebase-locator | - | | "Trace the flow of X" | codebase-analyzer | codebase-locator | | "Find examples of X" | codebase-pattern-finder | codebase-locator | | "What's documented about X?" | docs-locator | docs-analyzer |
For complex questions that span multiple concerns, spawn multiple specialized agents:
Example: "How does authentication work and why was JWT chosen?"
Task(subagent_type="codebase-locator", prompt="Find all auth-related files...")
Task(subagent_type="codebase-analyzer", prompt="Trace auth flow implementation...")
Task(subagent_type="docs-locator", prompt="Find auth design docs and ADRs...")
Task(subagent_type="docs-analyzer", prompt="Extract auth decisions and rationale...")
Always spawn multiple sub-agents in parallel when investigating different aspects of the same question. This significantly reduces research time.
Include precise file:line references for all findings:
src/services/auth.service.ts:45 - Goodthe auth service - InsufficientFocus on observable facts:
Avoid speculation or judgment:
For broad questions, structure the research in layers:
For narrow questions, go directly to specifics with supporting context.
When relevant, include findings from documentation:
This skill handles questions like:
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer