research
warpdotdev/common-skills
Delegate noisy investigation to subagents to keep your context clean and focused on the actual task.
What is research?
Research skill lets you delegate file reading, log analysis, and codebase surveys to subagents, so you receive only the distilled answer without the noise. Use it whenever answering a question would require reading many files, long logs, or large diffs—situations where the cost of producing the answer far exceeds the answer itself.
- Spawn one or more subagents to investigate questions independently
- Isolate noise (file contents, logs, dead-end reads) from your context window
- Return distilled answers with supporting evidence (file paths, line numbers, symbols)
- Handle parallel investigations for truly independent sub-questions
- Preserve context for subsequent decisions by avoiding pollution from intermediate findings
How to install research
npx skills add https://github.com/warpdotdev/common-skills --skill researchHow to use research
- 1.Identify a question where the investigation cost far exceeds the answer value
- 2.Brief the subagent with the exact question, where to look, and desired output format
- 3.Request a distilled answer plus key evidence (file paths, line numbers, symbols)
- 4.Receive the focused report without intermediate noise in your context
- 5.If needed, read the specific files directly only after you know which ones matter
Use cases
- Finding the root cause of a failing test by having a subagent trace logs and code
- Summarizing how a symbol or API is used across the entire codebase
- Extracting the shape and rationale of a large PR or diff without reading it directly
- Investigating independent aspects (e.g., auth, billing, rate limiting) in parallel
- Answering 'how does X work', 'where is Y used', or 'what caused Z' questions
- Developers working in large codebases with many files to survey
- Engineers debugging complex failures across multiple logs or traces
- Code reviewers summarizing large PRs or diffs
- Teams using multi-agent orchestration to preserve orchestrator context
research FAQ
Avoid delegation for: reading 2–3 files you already know you need, single grep/lookup tasks, or anything where you need the raw material for your next edit. Delegation adds latency, so it only pays off when noise avoidance outweighs that cost.
Default to a single subagent. Use multiple in parallel only when the question genuinely decomposes into independent sub-parts that don't need to share intermediate findings—for example, investigating auth, billing, and rate limiting separately.
Request a distilled answer plus supporting evidence: the direct answer to your question, key evidence with exact file paths and symbols (e.g., `src/session.rs:142`), and any surprising findings or caveats encountered.
Send a focused follow-up to the same subagent asking it to tighten the answer. It retains its context and can refine the result cheaply without re-investigating.
Only if you need to edit them. Once you know which files matter from the distilled answer, you can read just those files directly—now you read three instead of twenty.
Full instructions (SKILL.md)
Source of truth, from warpdotdev/common-skills.
name: research description: Delegate noisy investigation to one or more subagents so the orchestrator's context stays clean, then work from the distilled answer. Use this skill whenever answering a question would require reading many files, long logs, large diffs, or wide codebase surveys — i.e. when producing the answer generates far more noise than the answer itself. Use it for "how does X work", "where is Y used", "what's the root cause of Z", "summarize this PR/log" style questions, and reach for it liberally before reading a pile of files inline.
Research
Use this skill to answer a question by delegating the work of finding the answer to a subagent, so that the byproducts of that work — file contents, log noise, dead-end reads — never enter your own context. You get back a distilled answer plus the evidence that supports it, and you stay sharp for the actual task.
Why this matters
Your context window is your most valuable and limited resource. Reading twenty files to discover that three of them mattered permanently pollutes your context with seventeen files of noise, degrading every subsequent decision you make. A subagent absorbs that noise on your behalf and hands you only the signal. Think of it as asking a colleague to dig through the archives and report back, rather than dumping the whole archive on your desk.
When to use it
Reach for research delegation when the cost of producing the answer is far greater than the answer itself. Strong signals:
- You'd need to read many files to find the few that are relevant.
- You'd need to wade through long test output, CI logs, or stack traces to extract a failure.
- You'd need to survey how a pattern, API, or symbol is used across the whole repo.
- You'd need to read and summarize a large diff or PR.
- The question has several independent sub-parts that could be investigated separately.
Examples — good fits:
- "What's the root cause of this failing test?" (the subagent reads the logs and traces the code; you get the cause)
- "How is
SessionManagerused across the codebase?" (the subagent greps and reads; you get a summary with call sites) - "Summarize what this 4,000-line PR changes and why." (the subagent reads the diff; you get the shape of it)
Examples — do NOT delegate:
- Reading 2–3 files you already know you need. Just read them directly; delegation adds latency for no context savings.
- A single
grepor one-line lookup. Do it yourself. - Anything where you need the raw material for your next step. If you're about to edit the files you'd be reading, delegating is counterproductive — you'd just have to re-read them yourself to make the change. Research delegation pays off when the output is a conclusion, not when it's material you'll work on directly.
The cost of a subagent is real (latency and tokens), so the test is always: does the noise I'd avoid outweigh that cost?
How to do it
Single vs. parallel
Default to a single subagent. Spawn multiple subagents in parallel only when the question genuinely decomposes into independent sub-parts that don't need to share intermediate findings — for example, "how does auth work AND how does billing work AND how does the rate limiter work" are three independent investigations that can run at once. Parallelism is a capability worth using when the parts are truly independent, since separate subagents can investigate simultaneously; but don't force a single coherent question into artificial fragments.
Brief the subagent well
The subagent does not share your intent, so spell it out. A good research brief includes:
- The exact question to answer.
- Where to look (repo path, branch, suspected files/symbols if you know them).
- That it is read-only — it should investigate and report, not modify files, unless the task explicitly calls for changes.
- The output you want back (see below).
Ask for signal, not transcript
Tell the subagent to return a distilled answer plus its supporting evidence, not a raw dump. Specifically:
- The direct answer to the question.
- The key evidence: exact file paths and symbols (e.g.
src/session.rs:142,fn reconnect), so you can jump straight to what matters. - Anything surprising or any caveats/unknowns it hit.
The whole point is that the noise stays with the subagent. If a report comes back bloated, send a focused follow-up to the same subagent asking it to tighten the answer — it retains its context and can refine cheaply.
After you get the answer
Work from the distilled result. If you later find you need the underlying files to make edits, read them directly at that point — now you know exactly which ones matter, so you read three files instead of twenty.
Related skills
More from warpdotdev/common-skills and the wider catalog.

resolve-merge-conflicts
Extract conflict hunks and compact diffs to resolve Git merge conflicts without loading full files.

respond-to-pr-comments-in-blocklist
Walk through PR review comments, collect response decisions, apply fixes, and preview GitHub replies before posting.

review-pr
Review pull request diffs and write structured feedback to review.json for workflow publication.

saga
Orchestrate autonomous, spec-driven development of medium-to-large features using worker subagents and airtight validation contracts.

spec-driven-implementation
Write PRODUCT.md and TECH.md specs before implementation to drive clarity and quality for substantial features.

update-skill
Create or update skills by generating, editing, or refining SKILL.md files in this repository.