Research Recipe Skill

A copy-and-customize template for composing You.com research Skills.

View as MarkdownOpen in Claude

A portable Agent Skill template for teams that need a custom research workflow. Copy the recipe, define the trigger, choose the standard You.com MCP server tools, and lock the output shape so agents retrieve and present evidence consistently.


What You’ll Build

A copy-and-customize SKILL.md template for teams that need a domain-specific research workflow. The recipe asks the author to define the trigger, choose the standard You.com MCP tools, and lock the output shape before publishing the skill.

When to Use It

No stock skill fits the task. Start from this recipe when you need a tailored trigger, a specific mix of retrieval tools, or a fixed output template your agent fills.


Prerequisites

Customize the Recipe

  1. Set the trigger — define the task type and the phrases that should invoke it.
  2. Choose the endpointsyou-research (synthesis), you-search (web/news), you-finance (markets), and you-contents (page text).
  3. Lock the output shape — a freeform answer, or a fixed template your agent fills.
Download SKILL.md

Grab the template to copy and edit.

The Template

SKILL.md
1---
2name: research-recipe
3description: A template for composing a custom research Skill on You.com endpoints. Copy this, set the trigger and the output shape, and wire the retrieval. Use when no stock skill fits the task.
4---
5
6# Research recipe (You.com) - template
7
8## When this fires
9Define your trigger here: the task type and the phrases that should invoke it.
10
11## How to retrieve
121. Choose the endpoint(s): `you-research` (synthesis), `you-search` (web/news),
13 `you-finance` (markets), `you-contents` (page text).
142. Call the standard You.com MCP server tools exposed by the agent harness.
153. Define the output shape - a freeform answer, or a fixed template your agent
16 fills.

Example: A Filled-In Skill

1---
2name: my-research-skill
3description: Use when the user needs a domain-specific research brief.
4---
5
6# My research skill
7
8## When this fires
9Define the task type, trigger phrases, and exclusions.
10
11## How to retrieve
121. Choose the endpoint mix: you-research, you-search, you-finance, you-contents.
132. Call the standard You.com MCP server tools.
143. Include relevant thread context in the retrieval request.
15
16## Output shape
17Return the exact sections your team needs, with citations preserved.

Next Steps