{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bilibili-downloader",
    "name": "Bilibili Downloader",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/BenAngel65/bilibili-downloader",
    "canonicalUrl": "https://clawhub.ai/BenAngel65/bilibili-downloader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/bilibili-downloader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bilibili-downloader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "assets/config_template.json",
      "references/quick_guide.md",
      "scripts/download_audio.py",
      "scripts/download_config.json",
      "scripts/download_playlist.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. 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/bilibili-downloader"
    },
    "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-downloader",
    "agentPageUrl": "https://openagent3.xyz/skills/bilibili-downloader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bilibili-downloader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bilibili-downloader/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": "Quick Start",
        "body": "Download a video by URL:\n\npip install bilibili-api-python\npython -c \"\nfrom bilibili_api import video, sync\nv = video.Video(bvid='BV1xx411c7m2')\nsync(v.download(output='./video.mp4'))\n\""
      },
      {
        "title": "Video Quality",
        "body": "Specify quality with qn parameter (127=8K, 126=杜比, 125=1080P+, etc.)\nDefault selects best available quality"
      },
      {
        "title": "Audio Download",
        "body": "Download original soundtrack: v.download_audious(output='./audio.mp3')\nSupports various audio formats"
      },
      {
        "title": "Subtitles",
        "body": "Get available subtitles: v.get_subtitle()\nDownload subtitle files: sync(v.download_subtitle(output='./'))"
      },
      {
        "title": "Covers and Thumbnails",
        "body": "Get cover URL: v.get_cover()\nDownload cover: sync(v.download_cover(output='./cover.jpg'))"
      },
      {
        "title": "Download Single Video",
        "body": "from bilibili_api import video, sync\nv = video.Video(bvid='BV1xx411c7m2')\nsync(v.download(output='./video.mp4'))"
      },
      {
        "title": "Download with Specific Quality",
        "body": "from bilibili_api import video, sync\nv = video.Video(bvid='BV1xx411c7m2')\ninfo = v.get_download_url(qn=127)  # 8K quality"
      },
      {
        "title": "Download Entire Playlist",
        "body": "from bilibili_api import video, sync\nfrom bilibili_api import playlist\n\npl = playlist.Playlist(playlist_id='123456')\nfor v in sync(pl.get_videos()):\n    sync(v.download(output=f'./playlist/{v[\"title\"]}.mp4'))"
      },
      {
        "title": "Download Audio Only",
        "body": "from bilibili_api import video, sync\nv = video.Video(bvid='BV1xx411c7m2')\nsync(v.download_audio(output='./audio.mp3'))"
      },
      {
        "title": "Authentication",
        "body": "For premium content, use browser cookies:\n\nLogin to Bilibili in browser\nExport SESSDATA cookie value\nSet environment variable: export BILIBILI_SESSDATA='your_cookie_value'"
      },
      {
        "title": "Requirements",
        "body": "bilibili-api-python: pip install bilibili-api-python\nffmpeg: Required for video/audio processing\nPython 3.8+"
      },
      {
        "title": "scripts/",
        "body": "Utility scripts for common download operations."
      },
      {
        "title": "references/",
        "body": "API documentation from bilibili-api repo\nQuality codes reference (qn values)\nCookie setup guide"
      },
      {
        "title": "assets/",
        "body": "Download templates and configuration examples."
      }
    ],
    "body": "Bilibili Downloader\nQuick Start\n\nDownload a video by URL:\n\npip install bilibili-api-python\npython -c \"\nfrom bilibili_api import video, sync\nv = video.Video(bvid='BV1xx411c7m2')\nsync(v.download(output='./video.mp4'))\n\"\n\nDownload Options\nVideo Quality\nSpecify quality with qn parameter (127=8K, 126=杜比, 125=1080P+, etc.)\nDefault selects best available quality\nAudio Download\nDownload original soundtrack: v.download_audious(output='./audio.mp3')\nSupports various audio formats\nSubtitles\nGet available subtitles: v.get_subtitle()\nDownload subtitle files: sync(v.download_subtitle(output='./'))\nCovers and Thumbnails\nGet cover URL: v.get_cover()\nDownload cover: sync(v.download_cover(output='./cover.jpg'))\nCommon Tasks\nDownload Single Video\nfrom bilibili_api import video, sync\nv = video.Video(bvid='BV1xx411c7m2')\nsync(v.download(output='./video.mp4'))\n\nDownload with Specific Quality\nfrom bilibili_api import video, sync\nv = video.Video(bvid='BV1xx411c7m2')\ninfo = v.get_download_url(qn=127)  # 8K quality\n\nDownload Entire Playlist\nfrom bilibili_api import video, sync\nfrom bilibili_api import playlist\n\npl = playlist.Playlist(playlist_id='123456')\nfor v in sync(pl.get_videos()):\n    sync(v.download(output=f'./playlist/{v[\"title\"]}.mp4'))\n\nDownload Audio Only\nfrom bilibili_api import video, sync\nv = video.Video(bvid='BV1xx411c7m2')\nsync(v.download_audio(output='./audio.mp3'))\n\nAuthentication\n\nFor premium content, use browser cookies:\n\nLogin to Bilibili in browser\nExport SESSDATA cookie value\nSet environment variable: export BILIBILI_SESSDATA='your_cookie_value'\nRequirements\nbilibili-api-python: pip install bilibili-api-python\nffmpeg: Required for video/audio processing\nPython 3.8+\nResources\nscripts/\n\nUtility scripts for common download operations.\n\nreferences/\nAPI documentation from bilibili-api repo\nQuality codes reference (qn values)\nCookie setup guide\nassets/\n\nDownload templates and configuration examples."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/BenAngel65/bilibili-downloader",
    "publisherUrl": "https://clawhub.ai/BenAngel65/bilibili-downloader",
    "owner": "BenAngel65",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bilibili-downloader",
    "downloadUrl": "https://openagent3.xyz/downloads/bilibili-downloader",
    "agentUrl": "https://openagent3.xyz/skills/bilibili-downloader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bilibili-downloader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bilibili-downloader/agent.md"
  }
}