{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/youtube-notification-analysis",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youtube-notification-analysis",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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-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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/youtube-notification-analysis",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "YouTube Notification Analysis",
        "body": "Analyze YouTube notifications for investment insights."
      },
      {
        "title": "Workflow",
        "body": "Open YouTube: browser action=open profile=openclaw targetUrl=https://www.youtube.com\nClick notification bell: Find ref=\"e8\" button\nExtract video IDs: From snapshot, find investment-related videos\nGet subtitles:\n\nFirst try: yt-dlp --write-subs --skip-download --sub-lang zh-Hans,en <video_url>\nIf no subtitles: Download video + whisper-cpp analysis\n\n\nAnalyze: Summarize investment recommendations\nExecute trades: Use tiger-trade skill"
      },
      {
        "title": "Subtitle Extraction",
        "body": "# Try yt-dlp first\nyt-dlp --write-subs --skip-download --sub-lang zh-Hans,en \"https://www.youtube.com/watch?v=VIDEO_ID\" -o /tmp/sub\n\n# If no subtitles, download + whisper\nyt-dlp -f best \"https://www.youtube.com/watch?v=VIDEO_ID\" -o /tmp/video.mp4\nwhisper-cpp/bin/main -m whisper-cpp/models/ggml-base.bin -f /tmp/video.mp4 --language ZH"
      },
      {
        "title": "Investment Analysis",
        "body": "Focus on investment and trading related videos from YouTube notifications. Analyze content for stock, crypto, macro finance, and market trends."
      },
      {
        "title": "Logging",
        "body": "All logs saved to /tmp/youtube_investment_*.log"
      }
    ],
    "body": "YouTube Notification Analysis\n\nAnalyze YouTube notifications for investment insights.\n\nWorkflow\nOpen YouTube: browser action=open profile=openclaw targetUrl=https://www.youtube.com\nClick notification bell: Find ref=\"e8\" button\nExtract video IDs: From snapshot, find investment-related videos\nGet subtitles:\nFirst try: yt-dlp --write-subs --skip-download --sub-lang zh-Hans,en <video_url>\nIf no subtitles: Download video + whisper-cpp analysis\nAnalyze: Summarize investment recommendations\nExecute trades: Use tiger-trade skill\nSubtitle Extraction\n# Try yt-dlp first\nyt-dlp --write-subs --skip-download --sub-lang zh-Hans,en \"https://www.youtube.com/watch?v=VIDEO_ID\" -o /tmp/sub\n\n# If no subtitles, download + whisper\nyt-dlp -f best \"https://www.youtube.com/watch?v=VIDEO_ID\" -o /tmp/video.mp4\nwhisper-cpp/bin/main -m whisper-cpp/models/ggml-base.bin -f /tmp/video.mp4 --language ZH\n\nInvestment Analysis\n\nFocus on investment and trading related videos from YouTube notifications. Analyze content for stock, crypto, macro finance, and market trends.\n\nLogging\n\nAll logs saved to /tmp/youtube_investment_*.log"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/esanle/youtube-notification-analysis",
    "publisherUrl": "https://clawhub.ai/esanle/youtube-notification-analysis",
    "owner": "esanle",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}