# Send YouTube AI Videos to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "youtube-ai-videos",
    "name": "YouTube AI Videos",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mjohannp/youtube-ai-videos",
    "canonicalUrl": "https://clawhub.ai/mjohannp/youtube-ai-videos",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/youtube-ai-videos",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youtube-ai-videos",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "config.json",
      "scripts/fetch_youtube_ai_videos.py",
      "scripts/find_channel_id.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/youtube-ai-videos"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/youtube-ai-videos",
    "downloadUrl": "https://openagent3.xyz/downloads/youtube-ai-videos",
    "agentUrl": "https://openagent3.xyz/skills/youtube-ai-videos/agent",
    "manifestUrl": "https://openagent3.xyz/skills/youtube-ai-videos/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/youtube-ai-videos/agent.md"
  }
}
```
## Documentation

### YouTube AI Videos

Fetch and display the latest AI-related videos from YouTube channels using YouTube Data API v3.

### Requirements

This skill requires a YouTube Data API v3 key to function. The API key can be provided in three ways (priority order):

Environment variable: YOUTUBE_API_KEY
Secrets file: ~/.openclaw/secrets/youtube_api_key.txt
Config file: config.json (fallback, not recommended for security)

Get a free API key: https://console.cloud.google.com/apis/api/youtube.googleapis.com

### Usage

Use this skill when you need recent AI-related videos from YouTube.

### Workflow

Fetch recent videos from configured YouTube channels using YouTube Data API v3
Filter videos by keywords in title
Filter by max age (default: 3 days)
Return up to 15 videos (configurable)
Sort by publication date (newest first)

### Configuration

All settings are in config.json:

channels: List of YouTube channel handles (@handle) or IDs
keywords: List of keywords to search for
maxVideos: Maximum number of videos to return (default: 15)
maxAgeDays: Maximum video age in days (default: 3)
youtubeApiKey: Fallback YouTube Data API v3 key (use environment/secrets instead)

### Adding Channels

Find YouTube channel handles or IDs:

Go to channel page
Look at URL: youtube.com/@CHANNELNAME or youtube.com/channel/CHANNEL_ID
Use @handle format (recommended) or channel ID

### Output Format

Each video includes:

Number (1-15)
Time ago (e.g., "2h ago")
Title with keyword matches highlighted in bold
Channel name
Direct YouTube link

Example:

1. [2h ago] [OpenClaw: The Next Generation of AI Agents](https://youtube.com/watch?v=...)
   by @IchBinFabian

### Running the Script

./scripts/fetch_youtube_ai_videos.py

The script loads --> YouTube API key from environment, secrets file, or config (in that order) and outputs filtered videos.

### Security Note

For security, prefer storing your API key in:

Environment variable: export YOUTUBE_API_KEY="your_key"
Secrets file: ~/.openclaw/secrets/youtube_api_key.txt

Avoid storing the API key directly in config.json as it's visible in plain text.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mjohannp
- Version: 1.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/youtube-ai-videos)
- [Send to Agent page](https://openagent3.xyz/skills/youtube-ai-videos/agent)
- [JSON manifest](https://openagent3.xyz/skills/youtube-ai-videos/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/youtube-ai-videos/agent.md)
- [Download page](https://openagent3.xyz/downloads/youtube-ai-videos)