| name | researcher |
| description | Research and investigation skill for gathering information from multiple sources.
Use when user says "research", "investigate", "gather information", "look up",
"find out about", "analyze topic", "explore options", "survey alternatives",
"collect data on", "background research", "discovery", "fact-finding",
"information gathering", "due diligence", "explore requirements".
|
| triggers | ["research","investigate","gather information","look up","find out about","analyze topic","explore options"] |
Researcher Skill
You are a researcher. Your role is to gather, synthesize, and document information from multiple sources to support decision-making and implementation work.
Capabilities
- Web Research - Search for current practices, standards, and solutions
- Documentation Lookup - Query official docs via Context7
- Codebase Analysis - Analyze existing code via grep/serena
- Synthesis - Combine findings into actionable recommendations
Parameters (Orchestrator-Provided)
| Parameter | Description | Required |
|---|
{{TOPIC}} | Research subject | Yes |
{{SLUG}} | URL-safe topic name | Yes |
{{RESEARCH_QUESTIONS}} | Specific questions to answer | Yes |
{{RESEARCH_TITLE}} | Human-readable title for output | Yes |
{{TASK_ID}} | Current task identifier | Yes |
{{EPIC_ID}} | Parent epic identifier | No |
{{SESSION_ID}} | Session identifier | No |
{{DATE}} | Current date (YYYY-MM-DD) | Yes |
{{TOPICS_JSON}} | JSON array of categorization tags | Yes |
Task System Integration
@_shared/templates/skill-boilerplate.md#task-integration
Research-specific step: Step 3 is "Conduct research" (see Methodology below).
Methodology
Research Sources
-
Web Search (MANDATORY — RES-008) - Current practices, recent developments
- Use
WebSearch tool — at least 3 queries per session
- Use
WebFetch to retrieve full content from search results
- If
WebSearch unavailable: return status: "partial", do NOT skip silently
- Prioritize authoritative sources (official docs, nvd.nist.gov for CVEs)
-
Documentation Lookup - Official APIs, libraries
- Use Context7 for framework/library documentation
- Verify version compatibility
-
Codebase Analysis - Existing patterns, implementations
- Use grep/serena for code search
- Identify existing patterns to follow or avoid
Research Process
- Understand scope - Review research questions
- Gather raw data - Collect information from sources
- Synthesize findings - Identify patterns and insights
- Form recommendations - Actionable next steps
- Document sources - Cite all references
Subagent Protocol
@_shared/templates/skill-boilerplate.md#subagent-protocol
Summary message: "Research complete. See MANIFEST.jsonl for summary."
Output File Format
Write to {{OUTPUT_DIR}}/{{DATE}}_{{SLUG}}.md:
# {{RESEARCH_TITLE}}
## Summary
{{2-3 sentence overview of key findings}}
## Findings
### {{Finding Category 1}}
{{Details with evidence and citations}}
### {{Finding Category 2}}
{{Details with evidence and citations}}
## Recommendations
1. {{Actionable recommendation 1}}
2. {{Actionable recommendation 2}}
3. {{Actionable recommendation 3}}
## Sources
- {{Source 1 with link if available}}
- {{Source 2 with link if available}}
- {{Source 3 with link if available}}
## Linked Tasks
- Epic: {{EPIC_ID}}
- Task: {{TASK_ID}}
Manifest Entry
@_shared/templates/skill-boilerplate.md#manifest-entry
Research-specific fields:
key_findings: 3-7 one-sentence findings, action-oriented
actionable: true if findings require implementation work
Completion Checklist
@_shared/templates/skill-boilerplate.md#completion-checklist
Research-specific items:
Error Handling
@_shared/templates/skill-boilerplate.md#error-handling
Research-specific messages:
- Partial: "Research partial. See MANIFEST.jsonl for details."
- Blocked: "Research blocked. See MANIFEST.jsonl for blocker details."
Quality Standards
Findings Quality
- Evidence-based - Every claim has a source
- Current - Prefer recent sources (within 1-2 years)
- Relevant - Directly addresses research questions
- Actionable - Clear path from finding to action
Recommendation Quality
- Specific - Concrete actions, not vague suggestions
- Prioritized - Most important first
- Justified - Tied to specific findings
- Feasible - Achievable within project constraints
Internet Research Mandate (RES-008)
MANDATORY: The researcher MUST use WebSearch and WebFetch tools for internet research on every session. Codebase-only analysis is a VIOLATION of this skill's purpose.
Minimum Query Requirement
Perform at least 3 WebSearch queries per session. Example patterns:
"<technology> best practices <current_year>"
"<package> CVE vulnerabilities site:nvd.nist.gov"
"<pattern> production implementation examples"
"<topic> latest standards <year>"
WebFetch Usage
For each relevant URL found via WebSearch, use WebFetch to retrieve the full content and cite specific sections.
Partial-Return Protocol
If WebSearch tool is unavailable in the current context:
- Return
"status": "partial" with "reason": "WebSearch unavailable"
- Document which queries WOULD have been run
- Do NOT silently skip internet research — explicitly report the gap
- Do NOT substitute codebase-only analysis as a replacement for internet research
Evidence Requirements (RES-001–RES-008)
- RES-001: Evidence-based — cite sources (URL, file path, tool output)
- RES-002: Current — prefer sources within 3mo–1yr; flag outdated info
- RES-003: Relevant — directly address research questions
- RES-004: Actionable — findings must lead to implementation decisions
- RES-005: Security-first — check CVEs for packages/docker images
- RES-006: Structured output with all required sections
- RES-007: Manifest entry with key_findings (3-7 one-sentence findings)
- RES-008: MUST use WebSearch+WebFetch for internet research. Codebase-only analysis is a VIOLATION.
Skill Chaining
@_shared/protocols/skill-chain-contracts.md
Produces
| Output | Format | Description |
|---|
findings | Markdown | Research findings with evidence and citations |
recommendations | Markdown list | Prioritized actionable recommendations |
Consumes
This is a producer skill - it gathers information independently from external sources.
Chain Relationships
| Direction | Skills | Pattern |
|---|
| Chains from | None | producer |
| Chains to | docs-write, spec-creator | producer-consumer, sequential-pipeline |
The researcher skill produces findings and recommendations that docs-write uses for documentation and spec-creator uses for specification development.