---
name: daily-briefing
description: Get a briefing on the latest AI developments from so-yesterday.ai via its REST API. Works without local repo access.
user-invocable: true
disable-model-invocation: true
allowed-tools: WebFetch
---

# Daily AI Briefing

Get a briefing on the latest AI developments using the so-yesterday.ai knowledge base. This skill works entirely through the public REST API — no local repository needed.

## Usage

`/daily-briefing`

## Workflow

1. **Get the latest digest**:
   ```
   GET https://so-yesterday.ai/api/digests
   ```
   Returns all digests sorted by date. Take the first (most recent).

2. **Read the digest content**:
   ```
   GET https://so-yesterday.ai/api/digests/<date>?agent=true
   ```
   Returns the 5 most important AI developments with source links rewritten as API URLs.

3. **Follow source links** to get deeper context on each development:
   ```
   GET https://so-yesterday.ai/api/videos/<video_id>?agent=true
   ```

4. **Check related knowledge concepts** for any topics that have dedicated pages:
   ```
   GET https://so-yesterday.ai/api/search?q=<topic>&type=knowledge&agent=true
   ```

5. **Present** the briefing with:
   - Date and headline
   - The 5 developments with brief explanations
   - Links to source videos and related knowledge concepts
   - One actionable insight or recommendation

## Output Format

Present as a structured briefing:
- **Date**: YYYY-MM-DD
- **Top 5 Developments** (numbered, each with 2-3 sentences + source link)
- **Deeper Context** (1-2 developments expanded with knowledge concept connections)
- **Actionable Takeaway** (one thing to pay attention to or act on)
