mcpbeat Sign in

Research Workflow Agent Skill

Guide agents through structured research including planning, multi-query execution, source analysis, and synthesis. Use for comprehensive topic research, deep investigation, or creating research reports. Keywords: research, investigate, deep dive, comprehensive, analysis, synthesis, report.

7k tokens
context cost
the whole folder, loaded on every use
6
files
instructions only
0
copies elsewhere
how many repositories repackaged it
128
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/jwynia/agent-skills --skill research-workflow

What comes with it

16 913 bytes besides the instruction
assets/research-plan-template.md
assets/research-report-template.md
assets/source-evaluation-checklist.md
references/methodology.md
references/output-formats.md

What it tells the agent to use

found in the instruction text
WebSearch reads your files

The instruction itself

29 sections, as written by the author

Research Workflow

A structured methodology for conducting comprehensive research. This skill guides you through planning, executing, analyzing, and synthesizing research on any topic.

When to Use This Skill

Use this skill when:

  • The user needs comprehensive research on a topic
  • Multiple search queries are needed to fully answer a question
  • Source credibility and synthesis matter
  • A research report or documented findings are expected
  • Keywords mentioned: research, investigate, deep dive, comprehensive analysis

Do NOT use this skill when:

  • A single quick search will suffice (use web-search instead)
  • The user just wants a simple fact lookup
  • No synthesis or analysis is needed
  • Time is extremely limited

Prerequisites

Before using this skill, ensure:

  • Web search capability is available (web-search skill, WebSearch tool, or similar)
  • Sufficient time for multi-phase research process
  • Clear understanding of the research question or topic

Research Phases Overview

┌─────────────────────────────────────────────────────────────┐
│                    RESEARCH WORKFLOW                        │
├─────────────────────────────────────────────────────────────┤
│                                                             │
│  1. PLANNING          2. EXECUTION                          │
│  ┌──────────────┐    ┌──────────────┐                       │
│  │ Define       │    │ Run searches │                       │
│  │ questions    │───>│ Evaluate     │                       │
│  │ Plan queries │    │ sources      │                       │
│  └──────────────┘    └──────────────┘                       │
│         │                   │                               │
│         v                   v                               │
│  3. ANALYSIS          4. SYNTHESIS                          │
│  ┌──────────────┐    ┌──────────────┐                       │
│  │ Organize     │    │ Create       │                       │
│  │ findings     │───>│ coherent     │                       │
│  │ Find patterns│    │ output       │                       │
│  └──────────────┘    └──────────────┘                       │
│                                                             │
└─────────────────────────────────────────────────────────────┘

Phase 1: Planning

Before any searches, establish a clear research plan.

Step 1: Define the Research Question

Convert the topic into specific, answerable questions.

Example:

  • Topic: "AI in healthcare"
  • Questions:
  • What are the current applications of AI in healthcare?
  • What are the main benefits and challenges?
  • What regulations govern AI in healthcare?
  • What are the latest developments (last 6 months)?

Step 2: Identify Sub-Topics

Break down the main topic into searchable components:

  • Core concepts and definitions
  • Current state and applications
  • Benefits and advantages
  • Challenges and limitations
  • Recent developments
  • Future trends

Step 3: Plan Search Strategy

Create a search plan with query progression:

  • Broad queries first: Get overall landscape
  • "[topic] overview"
  • "[topic] introduction guide"
  • Specific queries next: Dive into details
  • "[topic] specific aspect"
  • "[topic] case study"
  • Verification queries last: Confirm findings
  • "[topic] criticism challenges"
  • "[topic] latest news [year]"

Use the template at assets/research-plan-template.md to document your plan.

Phase 2: Execution

Execute your search plan systematically.

Step 1: Run Searches

Execute queries in order, using appropriate search parameters:

# Broad overview
web-search "AI in healthcare overview 2024"

# Specific deep dive
web-search "AI diagnostic imaging applications" --depth advanced

# Current news
web-search "AI healthcare regulations 2024" --topic news --time month

For each search, record:

  • Query used
  • Number of results reviewed
  • Key findings (2-3 bullet points)
  • Notable sources
  • New questions raised

Step 3: Evaluate Sources

Use the checklist at assets/source-evaluation-checklist.md to assess:

Credibility Indicators:

  • Author/organization expertise
  • Publication reputation
  • Date of publication
  • Citations and references

Quality Signals:

  • Evidence-based claims
  • Multiple perspectives
  • Clear methodology

Step 4: Iterate as Needed

Research is not linear. Based on findings:

  • Add new queries for gaps discovered
  • Verify surprising claims
  • Explore unexpected connections

Phase 3: Analysis

Organize and analyze your collected findings.

Step 1: Group Findings by Theme

Organize results into categories:

  • Core concepts
  • Current state
  • Benefits/opportunities
  • Challenges/risks
  • Recent developments
  • Expert opinions

Step 2: Identify Patterns

Look for:

  • Consensus: Where do multiple sources agree?
  • Conflicts: Where do sources disagree?
  • Gaps: What questions remain unanswered?
  • Trends: What direction is the field moving?

Step 3: Assess Confidence

For each finding, determine confidence level:

  • High: Multiple authoritative sources agree
  • Medium: Some evidence, limited sources
  • Low: Single source or conflicting information

Step 4: Note Limitations

Document:

  • What couldn't be found
  • Areas needing more research
  • Potential biases in sources

Phase 4: Synthesis

Create coherent, useful output from your analysis.

Step 1: Structure the Output

Choose appropriate format based on use case:

  • Executive summary: Quick overview for decisions
  • Full report: Comprehensive documentation
  • Action items: Practical next steps

Use the template at assets/research-report-template.md.

Step 2: Write the Synthesis

Key principles:

  • Lead with most important findings
  • Connect related concepts
  • Note confidence levels
  • Acknowledge limitations
  • Cite sources

Step 3: Include Actionable Elements

End with practical outputs:

  • Key takeaways (3-5 points)
  • Recommendations
  • Further research suggestions
  • Decision points

Complete Example

Scenario: Research "Best practices for API versioning"

Phase 1 - Planning:

Research Question: What are the best practices for API versioning?

Sub-questions:
1. What versioning strategies exist?
2. What are pros/cons of each?
3. What do major companies use?
4. What do experts recommend?

Search Plan:
- "API versioning strategies comparison"
- "REST API versioning best practices 2024"
- "API versioning header vs URL vs query parameter"
- "large companies API versioning approach"

Phase 2 - Execution:

Query 1: "API versioning strategies comparison"
- Found: URL versioning, header versioning, query parameter
- Key insight: URL versioning most common, header more "RESTful"
- Sources: REST API tutorial, Martin Fowler blog

Query 2: "REST API versioning best practices 2024"
- Found: Semantic versioning principles apply
- Key insight: Version only when breaking changes
- Sources: API design guides, Stack Overflow discussions

Phase 3 - Analysis:

Consensus Points:
- Version only for breaking changes
- Be consistent within an API
- Document version lifecycle

Conflicts:
- URL vs header placement (no clear winner)
- When to deprecate old versions

Gaps:
- Limited data on performance impact
- Few studies on developer experience

Phase 4 - Synthesis:

Key Findings:
1. Three main strategies exist (URL, header, query param)
2. URL versioning is most common and discoverable
3. Header versioning is considered more "pure" REST
4. Version only on breaking changes
5. Major companies split between approaches

Recommendations:
- Use URL versioning for public APIs (discoverability)
- Consider header versioning for internal APIs
- Document deprecation timeline clearly
- Use semantic versioning principles

Quality Checklist

Before completing research, verify:

  • [ ] Clear research questions were defined
  • [ ] Multiple queries were executed (minimum 3-5)
  • [ ] Sources were evaluated for credibility
  • [ ] Findings are organized by theme
  • [ ] Consensus and conflicts are noted
  • [ ] Confidence levels are indicated
  • [ ] Limitations are acknowledged
  • [ ] Output is actionable

Reference Materials

For detailed guidance, see:

  • Research Methodology - In-depth methodology background
  • Output Formats - Detailed format specifications

Templates

  • Research Plan Template
  • Research Report Template
  • Source Evaluation Checklist

Limitations

This workflow has the following limitations:

  • Quality depends on available web search capability
  • Cannot access paywalled or restricted content
  • Time-intensive for comprehensive research
  • Synthesis quality depends on agent capabilities
  • May miss very recent developments not yet indexed
  • web-search: For executing individual web searches (used within this workflow)

Other skills for the same job

different authors, same section of the catalogue
Gepetto
by softaworks
×2

Creates detailed, sectionized implementation plans through research, stakeholder interviews, and multi-LLM review. Use when planning features that need thorough pre-implementation analysis.

12k tokens
Scientific Problem Selection
by anthropics
vendor ×2

This skill should be used when scientists need help with research problem selection, project ideation, troubleshooting stuck projects, or strategic scientific decisions. Use this skill when users ask to pitch a new research idea, work through a project problem, evaluate project risks, plan research strategy, navigate decision trees, or get help choosing what scientific problem to work on. Typical requests include "I have an idea for a project", "I'm stuck on my research", "help me evaluate this project", "what should I work on", or "I need strategic advice about my research".

29k tokens
Scientific Brainstorming
by ComeOnOliver
×2

Research ideation partner. Generate hypotheses, explore interdisciplinary connections, challenge assumptions, develop methodologies, identify research gaps, for creative scientific problem-solving.

7k tokens
Zapier Workflows
by ComeOnOliver
×2

Manage and trigger pre-built Zapier workflows and MCP tool orchestration. Use when user mentions workflows, Zaps, automations, daily digest, research, search, lead tracking, expenses, or asks to "run" any process. Also handles Perplexity-based research and Google Sheets data tracking.

9k tokens
Scholar Evaluation
by K-Dense-AI
×1

Provide qualitative-first, evidence-traceable developmental review of scholarly works and audit low-stakes research-assessment rubrics with optional local quality controls. Never use for ranking people or consequential decisions.

39k tokens scripts
Brainstorming Research Ideas
by OpenRaiser
×1

Guides researchers through structured ideation frameworks to discover high-impact research directions. Use when exploring new problem spaces, pivoting between projects, or seeking novel angles on existing work.

5k tokens
Parallel Swarm Implementation
by ComeOnOliver
×1

Loop 2 of the Three-Loop Integrated Development System. META-SKILL that dynamically compiles Loop 1 plans into agent+skill execution graphs. Queen Coordinator selects optimal agents from 86-agent registry and assigns skills (when available) or custom instructions. 9-step swarm with theater detection and reality validation. Receives plans from research-driven-planning, feeds to cicd-intelligent-recovery. Use for adaptive, theater-free implementation.

15k tokens
Research Driven Planning
by ComeOnOliver
×1

Loop 1 of the Three-Loop Integrated Development System. Research-driven requirements analysis with iterative risk mitigation through 5x pre-mortem cycles using multi-agent consensus. Feeds validated, risk-mitigated plans to parallel-swarm-implementation. Use when starting new features or projects requiring comprehensive planning with <3% failure confidence and evidence-based technology selection.

15k tokens

How to use it

Copy the folder

Take jwynia/research-workflow from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.