{
  "schemaVersion": "1.0",
  "item": {
    "slug": "video-dl",
    "name": "Video Dl",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dimitryvin/video-dl",
    "canonicalUrl": "https://clawhub.ai/dimitryvin/video-dl",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/video-dl",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=video-dl",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/compress-and-send.sh",
      "scripts/download.sh"
    ],
    "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/video-dl"
    },
    "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/video-dl",
    "agentPageUrl": "https://openagent3.xyz/skills/video-dl/agent",
    "manifestUrl": "https://openagent3.xyz/skills/video-dl/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/video-dl/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": "Video Downloader",
        "body": "Download videos from almost any website using yt-dlp."
      },
      {
        "title": "Supported Sites",
        "body": "YouTube, Reddit, Twitter/X, TikTok, Instagram, Vimeo, Facebook, Twitch, and 1000+ others. Full list: https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md"
      },
      {
        "title": "Quick Download (best quality)",
        "body": "{baseDir}/scripts/download.sh \"URL\"\n\nDownloads to ~/Downloads/videos/ with best quality."
      },
      {
        "title": "With Options",
        "body": "{baseDir}/scripts/download.sh \"URL\" [OPTIONS]\n\nCommon options:\n\n--audio-only - Extract audio only (mp3)\n--720p - Limit to 720p max\n--1080p - Limit to 1080p max\n--output DIR - Custom output directory\n--filename NAME - Custom filename (without extension)"
      },
      {
        "title": "Examples",
        "body": "# Download YouTube video (best quality)\n{baseDir}/scripts/download.sh \"https://www.youtube.com/watch?v=dQw4w9WgXcQ\"\n\n# Download Reddit video\n{baseDir}/scripts/download.sh \"https://www.reddit.com/r/videos/comments/abc123/cool_video/\"\n\n# Extract audio only\n{baseDir}/scripts/download.sh \"https://www.youtube.com/watch?v=dQw4w9WgXcQ\" --audio-only\n\n# Download to specific folder\n{baseDir}/scripts/download.sh \"URL\" --output ~/Videos/projects\n\n# Custom filename\n{baseDir}/scripts/download.sh \"URL\" --filename \"my-video\""
      },
      {
        "title": "Output",
        "body": "Default location: ~/Downloads/videos/\nFilename format: {title}-{id}.{ext}\nReturns full path to downloaded file on success"
      },
      {
        "title": "Notes",
        "body": "Reddit videos require merging video+audio (handled automatically)\nAge-restricted YouTube videos may require cookies (not currently configured)\nVery long videos may take time; script shows progress\nIf download fails, check if the site is supported or if the video is private/deleted"
      },
      {
        "title": "Sending to Telegram",
        "body": "Large videos need compression for Telegram's 16MB limit. For long videos:\n\nDownload the video normally\nRun compression in background:\nnohup {baseDir}/scripts/compress-and-send.sh \"/path/to/video.mp4\" \"CHAT_ID\" > /tmp/compress.log 2>&1 &\n\n\nCheck back after estimated time (duration ÷ 4)\nSend the resulting -telegram.mp4 file\n\nThis avoids spamming the chat with progress updates."
      },
      {
        "title": "Direct yt-dlp Access",
        "body": "For advanced usage, yt-dlp is available at ~/.local/bin/yt-dlp (updated) or /usr/bin/yt-dlp. See yt-dlp --help for all options."
      }
    ],
    "body": "Video Downloader\n\nDownload videos from almost any website using yt-dlp.\n\nSupported Sites\n\nYouTube, Reddit, Twitter/X, TikTok, Instagram, Vimeo, Facebook, Twitch, and 1000+ others. Full list: https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md\n\nUsage\nQuick Download (best quality)\n{baseDir}/scripts/download.sh \"URL\"\n\n\nDownloads to ~/Downloads/videos/ with best quality.\n\nWith Options\n{baseDir}/scripts/download.sh \"URL\" [OPTIONS]\n\n\nCommon options:\n\n--audio-only - Extract audio only (mp3)\n--720p - Limit to 720p max\n--1080p - Limit to 1080p max\n--output DIR - Custom output directory\n--filename NAME - Custom filename (without extension)\nExamples\n# Download YouTube video (best quality)\n{baseDir}/scripts/download.sh \"https://www.youtube.com/watch?v=dQw4w9WgXcQ\"\n\n# Download Reddit video\n{baseDir}/scripts/download.sh \"https://www.reddit.com/r/videos/comments/abc123/cool_video/\"\n\n# Extract audio only\n{baseDir}/scripts/download.sh \"https://www.youtube.com/watch?v=dQw4w9WgXcQ\" --audio-only\n\n# Download to specific folder\n{baseDir}/scripts/download.sh \"URL\" --output ~/Videos/projects\n\n# Custom filename\n{baseDir}/scripts/download.sh \"URL\" --filename \"my-video\"\n\nOutput\nDefault location: ~/Downloads/videos/\nFilename format: {title}-{id}.{ext}\nReturns full path to downloaded file on success\nNotes\nReddit videos require merging video+audio (handled automatically)\nAge-restricted YouTube videos may require cookies (not currently configured)\nVery long videos may take time; script shows progress\nIf download fails, check if the site is supported or if the video is private/deleted\nSending to Telegram\n\nLarge videos need compression for Telegram's 16MB limit. For long videos:\n\nDownload the video normally\nRun compression in background:\nnohup {baseDir}/scripts/compress-and-send.sh \"/path/to/video.mp4\" \"CHAT_ID\" > /tmp/compress.log 2>&1 &\n\nCheck back after estimated time (duration ÷ 4)\nSend the resulting -telegram.mp4 file\n\nThis avoids spamming the chat with progress updates.\n\nDirect yt-dlp Access\n\nFor advanced usage, yt-dlp is available at ~/.local/bin/yt-dlp (updated) or /usr/bin/yt-dlp. See yt-dlp --help for all options."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/dimitryvin/video-dl",
    "publisherUrl": "https://clawhub.ai/dimitryvin/video-dl",
    "owner": "dimitryvin",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/video-dl",
    "downloadUrl": "https://openagent3.xyz/downloads/video-dl",
    "agentUrl": "https://openagent3.xyz/skills/video-dl/agent",
    "manifestUrl": "https://openagent3.xyz/skills/video-dl/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/video-dl/agent.md"
  }
}