# Send Youtube Notification Analysis 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "youtube-notification-analysis",
    "name": "Youtube Notification Analysis",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/esanle/youtube-notification-analysis",
    "canonicalUrl": "https://clawhub.ai/esanle/youtube-notification-analysis",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/youtube-notification-analysis",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youtube-notification-analysis",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "youtube-notification-analysis",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T14:02:03.363Z",
      "expiresAt": "2026-05-07T14:02:03.363Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youtube-notification-analysis",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youtube-notification-analysis",
        "contentDisposition": "attachment; filename=\"youtube-notification-analysis-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "youtube-notification-analysis"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/youtube-notification-analysis"
    },
    "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-notification-analysis",
    "downloadUrl": "https://openagent3.xyz/downloads/youtube-notification-analysis",
    "agentUrl": "https://openagent3.xyz/skills/youtube-notification-analysis/agent",
    "manifestUrl": "https://openagent3.xyz/skills/youtube-notification-analysis/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/youtube-notification-analysis/agent.md"
  }
}
```
## Documentation

### YouTube Notification Analysis

Analyze YouTube notifications for investment insights.

### Workflow

Open YouTube: browser action=open profile=openclaw targetUrl=https://www.youtube.com
Click notification bell: Find ref="e8" button
Extract video IDs: From snapshot, find investment-related videos
Get subtitles:

First try: yt-dlp --write-subs --skip-download --sub-lang zh-Hans,en <video_url>
If no subtitles: Download video + whisper-cpp analysis


Analyze: Summarize investment recommendations
Execute trades: Use tiger-trade skill

### Subtitle Extraction

# Try yt-dlp first
yt-dlp --write-subs --skip-download --sub-lang zh-Hans,en "https://www.youtube.com/watch?v=VIDEO_ID" -o /tmp/sub

# If no subtitles, download + whisper
yt-dlp -f best "https://www.youtube.com/watch?v=VIDEO_ID" -o /tmp/video.mp4
whisper-cpp/bin/main -m whisper-cpp/models/ggml-base.bin -f /tmp/video.mp4 --language ZH

### Investment Analysis

Focus on investment and trading related videos from YouTube notifications. Analyze content for stock, crypto, macro finance, and market trends.

### Logging

All logs saved to /tmp/youtube_investment_*.log
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: esanle
- Version: 1.0.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T14:02:03.363Z
- Expires at: 2026-05-07T14:02:03.363Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/youtube-notification-analysis)
- [Send to Agent page](https://openagent3.xyz/skills/youtube-notification-analysis/agent)
- [JSON manifest](https://openagent3.xyz/skills/youtube-notification-analysis/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/youtube-notification-analysis/agent.md)
- [Download page](https://openagent3.xyz/downloads/youtube-notification-analysis)