{
  "schemaVersion": "1.0",
  "item": {
    "slug": "yt-video-downloader",
    "name": "YouTube Video Downloader",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/wells1137/yt-video-downloader",
    "canonicalUrl": "https://clawhub.ai/wells1137/yt-video-downloader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/yt-video-downloader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=yt-video-downloader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/download_video.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-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/yt-video-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/yt-video-downloader",
    "agentPageUrl": "https://openagent3.xyz/skills/yt-video-downloader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/yt-video-downloader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/yt-video-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": "YouTube Video Downloader",
        "body": "Download YouTube videos with full control over quality and format settings."
      },
      {
        "title": "Quick Start",
        "body": "The simplest way to download a video:\n\npython scripts/download_video.py \"https://www.youtube.com/watch?v=VIDEO_ID\"\n\nThis downloads the video in best available quality as MP4 to /mnt/user-data/outputs/."
      },
      {
        "title": "Quality Settings",
        "body": "Use -q or --quality to specify video quality:\n\nbest (default): Highest quality available\n1080p: Full HD\n720p: HD\n480p: Standard definition\n360p: Lower quality\nworst: Lowest quality available\n\nExample:\n\npython scripts/download_video.py \"URL\" -q 720p"
      },
      {
        "title": "Format Options",
        "body": "Use -f or --format to specify output format (video downloads only):\n\nmp4 (default): Most compatible\nwebm: Modern format\nmkv: Matroska container\n\nExample:\n\npython scripts/download_video.py \"URL\" -f webm"
      },
      {
        "title": "Audio Only",
        "body": "Use -a or --audio-only to download only audio as MP3:\n\npython scripts/download_video.py \"URL\" -a"
      },
      {
        "title": "Custom Output Directory",
        "body": "Use -o or --output to specify a different output directory:\n\npython scripts/download_video.py \"URL\" -o /path/to/directory"
      },
      {
        "title": "Complete Examples",
        "body": "Download video in 1080p as MP4:\n\npython scripts/download_video.py \"https://www.youtube.com/watch?v=dQw4w9WgXcQ\" -q 1080p\n\nDownload audio only as MP3:\n\npython scripts/download_video.py \"https://www.youtube.com/watch?v=dQw4w9WgXcQ\" -a\n\nDownload in 720p as WebM to custom directory:\n\npython scripts/download_video.py \"https://www.youtube.com/watch?v=dQw4w9WgXcQ\" -q 720p -f webm -o /custom/path"
      },
      {
        "title": "How It Works",
        "body": "The skill uses yt-dlp, a robust YouTube downloader that:\n\nAutomatically installs itself if not present\nFetches video information before downloading\nSelects the best available streams matching your criteria\nMerges video and audio streams when needed\nSupports a wide range of YouTube video formats"
      },
      {
        "title": "Important Notes",
        "body": "Downloads are saved to /mnt/user-data/outputs/ by default\nVideo filename is automatically generated from the video title\nThe script handles installation of yt-dlp automatically\nOnly single videos are downloaded (playlists are skipped by default)\nHigher quality videos may take longer to download and use more disk space"
      }
    ],
    "body": "YouTube Video Downloader\n\nDownload YouTube videos with full control over quality and format settings.\n\nQuick Start\n\nThe simplest way to download a video:\n\npython scripts/download_video.py \"https://www.youtube.com/watch?v=VIDEO_ID\"\n\n\nThis downloads the video in best available quality as MP4 to /mnt/user-data/outputs/.\n\nOptions\nQuality Settings\n\nUse -q or --quality to specify video quality:\n\nbest (default): Highest quality available\n1080p: Full HD\n720p: HD\n480p: Standard definition\n360p: Lower quality\nworst: Lowest quality available\n\nExample:\n\npython scripts/download_video.py \"URL\" -q 720p\n\nFormat Options\n\nUse -f or --format to specify output format (video downloads only):\n\nmp4 (default): Most compatible\nwebm: Modern format\nmkv: Matroska container\n\nExample:\n\npython scripts/download_video.py \"URL\" -f webm\n\nAudio Only\n\nUse -a or --audio-only to download only audio as MP3:\n\npython scripts/download_video.py \"URL\" -a\n\nCustom Output Directory\n\nUse -o or --output to specify a different output directory:\n\npython scripts/download_video.py \"URL\" -o /path/to/directory\n\nComplete Examples\nDownload video in 1080p as MP4:\npython scripts/download_video.py \"https://www.youtube.com/watch?v=dQw4w9WgXcQ\" -q 1080p\n\nDownload audio only as MP3:\npython scripts/download_video.py \"https://www.youtube.com/watch?v=dQw4w9WgXcQ\" -a\n\nDownload in 720p as WebM to custom directory:\npython scripts/download_video.py \"https://www.youtube.com/watch?v=dQw4w9WgXcQ\" -q 720p -f webm -o /custom/path\n\nHow It Works\n\nThe skill uses yt-dlp, a robust YouTube downloader that:\n\nAutomatically installs itself if not present\nFetches video information before downloading\nSelects the best available streams matching your criteria\nMerges video and audio streams when needed\nSupports a wide range of YouTube video formats\nImportant Notes\nDownloads are saved to /mnt/user-data/outputs/ by default\nVideo filename is automatically generated from the video title\nThe script handles installation of yt-dlp automatically\nOnly single videos are downloaded (playlists are skipped by default)\nHigher quality videos may take longer to download and use more disk space"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/wells1137/yt-video-downloader",
    "publisherUrl": "https://clawhub.ai/wells1137/yt-video-downloader",
    "owner": "wells1137",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/yt-video-downloader",
    "downloadUrl": "https://openagent3.xyz/downloads/yt-video-downloader",
    "agentUrl": "https://openagent3.xyz/skills/yt-video-downloader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/yt-video-downloader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/yt-video-downloader/agent.md"
  }
}