Deep Research Skill

An Agent Skill for multi-source synthesis with citations preserved.

View as MarkdownOpen in Claude

A portable Agent Skill that decides when a user needs thorough web research and routes retrieval through the standard You.com MCP server. Use it for open-ended briefings, deep dives, and cited synthesis across multiple sources.


What You’ll Build

A SKILL.md package that teaches an agent when a request needs multi-source research instead of a single lookup. The skill sends the user’s question and relevant thread context to the standard You.com MCP server’s you-research tool and preserves inline citations in the final answer.

When It Fires

The task needs synthesis across several sources, not one fact. Trigger signals: “research”, “briefing”, “deep dive”, “literature on”, open-ended “what’s known about”. For single-fact lookups, a plain search is the better fit.


Prerequisites

Install the Skill

  1. Connect your agent harness to the You.com MCP server — see the MCP server guide.
  2. Save the skill below as SKILL.md in your harness’s skills directory (or download it).
  3. The agent loads the skill and invokes you-research whenever the trigger fires.
Download SKILL.md

Grab the ready-to-use skill file.

The Skill

SKILL.md
1---
2name: deep-research
3description: Use when the user needs a thorough, multi-source answer with citations - "research X", "give me a briefing on Y", "what's the state of Z". Not for single-fact lookups; use a plain search for those.
4---
5
6# Deep research (You.com)
7
8## When this fires
9The task needs synthesis across several sources, not one fact. Signals:
10"research", "briefing", "deep dive", "literature on", open-ended "what's
11known about".
12
13## How to retrieve
141. Call the standard You.com MCP server's `you-research` tool.
152. Pass the user's question plus any relevant context already in the thread.
163. Return the synthesized answer with inline citations preserved. Never strip
17 sources.

Example Output

1# Deep research: agentic browser automation
2
3## Summary
4Agentic browser automation is moving from brittle scripts toward goal-directed
5agents that can inspect pages, use tools, recover from DOM changes, and cite
6the sources behind their conclusions.
7
8Sources:
9[1] Vendor docs - browser automation architecture
10[2] Recent coverage - enterprise adoption patterns

Next Steps