{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bilibili-youtube-watcher",
    "name": "Bilibili & YouTube Watcher",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/donnycui/bilibili-youtube-watcher",
    "canonicalUrl": "https://clawhub.ai/donnycui/bilibili-youtube-watcher",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/bilibili-youtube-watcher",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bilibili-youtube-watcher",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "_meta.json",
      "scripts/get_transcript.py"
    ],
    "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. 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."
        },
        {
          "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/bilibili-youtube-watcher"
    },
    "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/bilibili-youtube-watcher",
    "agentPageUrl": "https://openagent3.xyz/skills/bilibili-youtube-watcher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bilibili-youtube-watcher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bilibili-youtube-watcher/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. 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."
      },
      {
        "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Video Watcher",
        "body": "Fetch transcripts from YouTube and Bilibili videos to enable summarization, QA, and content extraction."
      },
      {
        "title": "Supported Platforms",
        "body": "✅ YouTube (youtube.com, youtu.be)\n✅ Bilibili (bilibili.com, b23.tv)"
      },
      {
        "title": "Get Transcript (Auto-detect Platform)",
        "body": "python3 {baseDir}/scripts/get_transcript.py \"VIDEO_URL\""
      },
      {
        "title": "Specify Language",
        "body": "python3 {baseDir}/scripts/get_transcript.py \"VIDEO_URL\" --lang zh-CN"
      },
      {
        "title": "YouTube Video",
        "body": "python3 {baseDir}/scripts/get_transcript.py \"https://www.youtube.com/watch?v=dQw4w9WgXcQ\""
      },
      {
        "title": "Bilibili Video",
        "body": "python3 {baseDir}/scripts/get_transcript.py \"https://www.bilibili.com/video/BV1xx411c7mD\""
      },
      {
        "title": "With Custom Language",
        "body": "# Get English subtitles for a Bilibili video\npython3 {baseDir}/scripts/get_transcript.py \"https://bilibili.com/video/...\" --lang en\n\n# Get Chinese subtitles for a YouTube video\npython3 {baseDir}/scripts/get_transcript.py \"https://youtube.com/watch?v=...\" --lang zh-CN"
      },
      {
        "title": "Default Languages",
        "body": "PlatformDefault LanguageYouTubeen (English)Bilibilizh-CN (Chinese)"
      },
      {
        "title": "Common Language Codes",
        "body": "en - English\nzh-CN - Simplified Chinese (简体中文)\nzh-TW - Traditional Chinese (繁體中文)\nja - Japanese\nko - Korean\nes - Spanish\nfr - French\nde - German"
      },
      {
        "title": "Notes",
        "body": "Requires yt-dlp to be installed and available in PATH\nWorks with videos that have closed captions (CC) or auto-generated subtitles\nAutomatically detects platform from URL\nIf no subtitles available, the script will fail with an error message\nyt-dlp natively supports both YouTube and Bilibili"
      }
    ],
    "body": "Video Watcher\n\nFetch transcripts from YouTube and Bilibili videos to enable summarization, QA, and content extraction.\n\nSupported Platforms\n✅ YouTube (youtube.com, youtu.be)\n✅ Bilibili (bilibili.com, b23.tv)\nUsage\nGet Transcript (Auto-detect Platform)\npython3 {baseDir}/scripts/get_transcript.py \"VIDEO_URL\"\n\nSpecify Language\npython3 {baseDir}/scripts/get_transcript.py \"VIDEO_URL\" --lang zh-CN\n\nExamples\nYouTube Video\npython3 {baseDir}/scripts/get_transcript.py \"https://www.youtube.com/watch?v=dQw4w9WgXcQ\"\n\nBilibili Video\npython3 {baseDir}/scripts/get_transcript.py \"https://www.bilibili.com/video/BV1xx411c7mD\"\n\nWith Custom Language\n# Get English subtitles for a Bilibili video\npython3 {baseDir}/scripts/get_transcript.py \"https://bilibili.com/video/...\" --lang en\n\n# Get Chinese subtitles for a YouTube video\npython3 {baseDir}/scripts/get_transcript.py \"https://youtube.com/watch?v=...\" --lang zh-CN\n\nDefault Languages\nPlatform\tDefault Language\nYouTube\ten (English)\nBilibili\tzh-CN (Chinese)\nCommon Language Codes\nen - English\nzh-CN - Simplified Chinese (简体中文)\nzh-TW - Traditional Chinese (繁體中文)\nja - Japanese\nko - Korean\nes - Spanish\nfr - French\nde - German\nNotes\nRequires yt-dlp to be installed and available in PATH\nWorks with videos that have closed captions (CC) or auto-generated subtitles\nAutomatically detects platform from URL\nIf no subtitles available, the script will fail with an error message\nyt-dlp natively supports both YouTube and Bilibili"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/donnycui/bilibili-youtube-watcher",
    "publisherUrl": "https://clawhub.ai/donnycui/bilibili-youtube-watcher",
    "owner": "donnycui",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bilibili-youtube-watcher",
    "downloadUrl": "https://openagent3.xyz/downloads/bilibili-youtube-watcher",
    "agentUrl": "https://openagent3.xyz/skills/bilibili-youtube-watcher/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bilibili-youtube-watcher/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bilibili-youtube-watcher/agent.md"
  }
}