News & Events Skill

An Agent Skill for recent, time-bounded, cited retrieval.

View as MarkdownOpen in Claude

A portable Agent Skill for recency-sensitive questions. It routes “latest”, “breaking”, “this week”, and “as of today” requests to You.com Search in news mode, constrains retrieval to the requested window, and returns dated results with sources.


What You’ll Build

A SKILL.md package for recency-sensitive questions. The skill detects phrases such as latest, this week, breaking, and as of today, routes the request to you-search in news mode, applies the requested date window, and states the as-of time explicitly.

When It Fires

The answer depends on recency. Trigger signals: “latest”, “this week”, “breaking”, and “as of today”.


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 invokes you-search in news mode whenever the trigger fires.
Download SKILL.md

Grab the ready-to-use skill file.

The Skill

SKILL.md
1---
2name: news-events
3description: Use when the user asks about recent or breaking developments - "what happened with X this week", "latest on Y", anything time-bounded. Prioritizes freshness over depth.
4---
5
6# News & events (You.com)
7
8## When this fires
9The answer depends on recency. Signals: "latest", "this week", "breaking",
10"as of today".
11
12## How to retrieve
131. Call the standard You.com MCP server's `you-search` tool in news mode.
142. Constrain to the requested window; lead with the most recent items.
153. Return dated, cited results. State the as-of time explicitly.

Example Output

1As of June 18, 2026, 2:00 PM ET:
2
3## Latest on the requested topic
4- June 18, 2026 - The most recent report says the rollout expanded to three
5 additional markets.
6- June 17, 2026 - Company leadership confirmed the timeline.
7
8Sources:
9[1] News source - June 18, 2026
10[2] Company update - June 17, 2026

Next Steps