{
  "schemaVersion": "1.0",
  "item": {
    "slug": "youtube-playlists",
    "name": "Youtube Playlist Handler",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/matejmicek/youtube-playlists",
    "canonicalUrl": "https://clawhub.ai/matejmicek/youtube-playlists",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/youtube-playlists",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youtube-playlists",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "scripts/yt_playlist.py",
      "yt_playlist.py",
      "SKILL.md"
    ],
    "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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/youtube-playlists"
    },
    "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/youtube-playlists",
    "agentPageUrl": "https://openagent3.xyz/skills/youtube-playlists/agent",
    "manifestUrl": "https://openagent3.xyz/skills/youtube-playlists/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/youtube-playlists/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 Playlists",
        "body": "Create and manage YouTube playlists via OAuth."
      },
      {
        "title": "Commands",
        "body": "# Authenticate (first time only)\npython3 {baseDir}/scripts/yt_playlist.py auth\n\n# Create empty playlist\npython3 {baseDir}/scripts/yt_playlist.py create \"Playlist Name\"\n\n# Add video to existing playlist  \npython3 {baseDir}/scripts/yt_playlist.py add <playlist_id> <video_id_or_url>\n\n# Create playlist with multiple videos (best for agent use)\npython3 {baseDir}/scripts/yt_playlist.py bulk-create \"Playlist Name\" <video1> <video2> ...\n\n# List your playlists\npython3 {baseDir}/scripts/yt_playlist.py list"
      },
      {
        "title": "Examples",
        "body": "Create a Zwift watchlist:\n\npython3 {baseDir}/scripts/yt_playlist.py bulk-create \"Zwift Feb 3\" \\\n  l3u_FAv33G0 \\\n  MY5omSLtAvk \\\n  VdaZqfEKv38 \\\n  Wq16lyNpmYs \\\n  SE7d4eaOJv4"
      },
      {
        "title": "Notes",
        "body": "First run requires browser auth (opens automatically)\nToken is cached in token.pickle\nAccepts video IDs or full YouTube URLs\nDefault privacy is \"unlisted\" for bulk-create, \"private\" for single create"
      }
    ],
    "body": "YouTube Playlists\n\nCreate and manage YouTube playlists via OAuth.\n\nCommands\n# Authenticate (first time only)\npython3 {baseDir}/scripts/yt_playlist.py auth\n\n# Create empty playlist\npython3 {baseDir}/scripts/yt_playlist.py create \"Playlist Name\"\n\n# Add video to existing playlist  \npython3 {baseDir}/scripts/yt_playlist.py add <playlist_id> <video_id_or_url>\n\n# Create playlist with multiple videos (best for agent use)\npython3 {baseDir}/scripts/yt_playlist.py bulk-create \"Playlist Name\" <video1> <video2> ...\n\n# List your playlists\npython3 {baseDir}/scripts/yt_playlist.py list\n\nExamples\n\nCreate a Zwift watchlist:\n\npython3 {baseDir}/scripts/yt_playlist.py bulk-create \"Zwift Feb 3\" \\\n  l3u_FAv33G0 \\\n  MY5omSLtAvk \\\n  VdaZqfEKv38 \\\n  Wq16lyNpmYs \\\n  SE7d4eaOJv4\n\nNotes\nFirst run requires browser auth (opens automatically)\nToken is cached in token.pickle\nAccepts video IDs or full YouTube URLs\nDefault privacy is \"unlisted\" for bulk-create, \"private\" for single create"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/matejmicek/youtube-playlists",
    "publisherUrl": "https://clawhub.ai/matejmicek/youtube-playlists",
    "owner": "matejmicek",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/youtube-playlists",
    "downloadUrl": "https://openagent3.xyz/downloads/youtube-playlists",
    "agentUrl": "https://openagent3.xyz/skills/youtube-playlists/agent",
    "manifestUrl": "https://openagent3.xyz/skills/youtube-playlists/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/youtube-playlists/agent.md"
  }
}