{
  "schemaVersion": "1.0",
  "item": {
    "slug": "yt-dlp",
    "name": "Yt Dlp",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/1999AZZAR/yt-dlp",
    "canonicalUrl": "https://clawhub.ai/1999AZZAR/yt-dlp",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/yt-dlp",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=yt-dlp",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/guide.md",
      "references/usage.md",
      "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/yt-dlp"
    },
    "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-dlp",
    "agentPageUrl": "https://openagent3.xyz/skills/yt-dlp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/yt-dlp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/yt-dlp/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": "Overview",
        "body": "This skill provides a convenient interface to yt-dlp, a powerful command-line media downloader. It simplifies the process of downloading videos, extracting audio, and managing playlists with optimal quality settings and metadata handling."
      },
      {
        "title": "Usage",
        "body": "Role: Media Archivist.\nTrigger: \"Download this video\", \"Get MP3 from YouTube\", \"Archive this channel\".\nOutput: Downloaded media files in the current directory or specified output path."
      },
      {
        "title": "Dependencies",
        "body": "yt-dlp: The core downloader (must be installed in PATH).\nffmpeg: Required for merging video+audio streams and format conversion."
      },
      {
        "title": "scripts/download.sh",
        "body": "The primary entry point. It wraps yt-dlp with sensible defaults for high-quality archiving.\n\nSyntax:\n\n./scripts/download.sh <URL> [OPTIONS]\n\nDefaults:\n\nBest video + best audio merged (bv+ba/b)\nEmbeds metadata, thumbnail, and subtitles (--embed-metadata, --embed-thumbnail, --embed-subs)\nOutput format: Title [ID].mp4 (%(title)s [%(id)s].%(ext)s)\n\nExamples:\n\nDownload a single video (best quality):\nscripts/download.sh \"https://www.youtube.com/watch?v=dQw4w9WgXcQ\"\n\n\n\nDownload a playlist:\nscripts/download.sh \"https://www.youtube.com/playlist?list=PL...\"\n\n\n\nExtract Audio (MP3):\nscripts/download.sh \"URL\" -x --audio-format mp3\n\n\n\nDownload specific resolution (e.g., 1080p):\nscripts/download.sh \"URL\" -f \"bv*[height<=1080]+ba/b[height<=1080]\"\n\n\n\nUse Cookies (for age-restricted/premium content):\nNote: Requires browser cookies exported to a file or accessed directly.\nscripts/download.sh \"URL\" --cookies-from-browser chrome"
      },
      {
        "title": "Installation & Security",
        "body": "This skill relies on yt-dlp and ffmpeg being installed on the host system.\n\nOfficial Sources Only: Install via pip install yt-dlp or your system package manager (apt, brew). Avoid running curl scripts from untrusted sources.\nCookies: Use --cookies-from-browser with caution. For autonomous agents, prefer exporting a cookies.txt file manually to limit access to your active browser session."
      },
      {
        "title": "Reference Guide",
        "body": "For advanced usage, see the comprehensive Usage Guide."
      }
    ],
    "body": "yt-dlp Skill\nOverview\n\nThis skill provides a convenient interface to yt-dlp, a powerful command-line media downloader. It simplifies the process of downloading videos, extracting audio, and managing playlists with optimal quality settings and metadata handling.\n\nUsage\nRole: Media Archivist.\nTrigger: \"Download this video\", \"Get MP3 from YouTube\", \"Archive this channel\".\nOutput: Downloaded media files in the current directory or specified output path.\nDependencies\nyt-dlp: The core downloader (must be installed in PATH).\nffmpeg: Required for merging video+audio streams and format conversion.\nCommands\nscripts/download.sh\n\nThe primary entry point. It wraps yt-dlp with sensible defaults for high-quality archiving.\n\nSyntax:\n\n./scripts/download.sh <URL> [OPTIONS]\n\n\nDefaults:\n\nBest video + best audio merged (bv+ba/b)\nEmbeds metadata, thumbnail, and subtitles (--embed-metadata, --embed-thumbnail, --embed-subs)\nOutput format: Title [ID].mp4 (%(title)s [%(id)s].%(ext)s)\n\nExamples:\n\nDownload a single video (best quality):\n\nscripts/download.sh \"https://www.youtube.com/watch?v=dQw4w9WgXcQ\"\n\n\nDownload a playlist:\n\nscripts/download.sh \"https://www.youtube.com/playlist?list=PL...\"\n\n\nExtract Audio (MP3):\n\nscripts/download.sh \"URL\" -x --audio-format mp3\n\n\nDownload specific resolution (e.g., 1080p):\n\nscripts/download.sh \"URL\" -f \"bv*[height<=1080]+ba/b[height<=1080]\"\n\n\nUse Cookies (for age-restricted/premium content): Note: Requires browser cookies exported to a file or accessed directly.\n\nscripts/download.sh \"URL\" --cookies-from-browser chrome\n\nInstallation & Security\n\nThis skill relies on yt-dlp and ffmpeg being installed on the host system.\n\nOfficial Sources Only: Install via pip install yt-dlp or your system package manager (apt, brew). Avoid running curl scripts from untrusted sources.\nCookies: Use --cookies-from-browser with caution. For autonomous agents, prefer exporting a cookies.txt file manually to limit access to your active browser session.\nReference Guide\n\nFor advanced usage, see the comprehensive Usage Guide."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/1999AZZAR/yt-dlp",
    "publisherUrl": "https://clawhub.ai/1999AZZAR/yt-dlp",
    "owner": "1999AZZAR",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/yt-dlp",
    "downloadUrl": "https://openagent3.xyz/downloads/yt-dlp",
    "agentUrl": "https://openagent3.xyz/skills/yt-dlp/agent",
    "manifestUrl": "https://openagent3.xyz/skills/yt-dlp/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/yt-dlp/agent.md"
  }
}