{
  "schemaVersion": "1.0",
  "item": {
    "slug": "youtube-uploader",
    "name": "YouTube Uploader",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/Nachx639/youtube-uploader",
    "canonicalUrl": "https://clawhub.ai/Nachx639/youtube-uploader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/youtube-uploader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youtube-uploader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/categories.md",
      "scripts/youtube-upload.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-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-uploader"
    },
    "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-uploader",
    "agentPageUrl": "https://openagent3.xyz/skills/youtube-uploader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/youtube-uploader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/youtube-uploader/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 Uploader",
        "body": "Upload videos with full metadata and custom thumbnails to YouTube via OAuth2."
      },
      {
        "title": "Setup (one-time)",
        "body": "The user needs a Google Cloud project with the YouTube Data API v3 enabled and an OAuth2 client ID (type \"Desktop app\"). Download the client_secret.json file."
      },
      {
        "title": "Authenticate",
        "body": "python3 {baseDir}/scripts/youtube-upload.py auth --client-secret /path/to/client_secret.json\n\nThis opens a browser for Google OAuth consent, then saves credentials to ~/.openclaw/youtube/channels.json. Multiple channels can be authenticated by repeating the command with different Google accounts."
      },
      {
        "title": "List authenticated channels",
        "body": "python3 {baseDir}/scripts/youtube-upload.py channels"
      },
      {
        "title": "Upload a video",
        "body": "python3 {baseDir}/scripts/youtube-upload.py upload \\\n  --file /path/to/video.mp4 \\\n  --title \"Video Title\" \\\n  --description \"Video description\" \\\n  --tags \"tag1,tag2,tag3\" \\\n  --category 22 \\\n  --privacy private \\\n  --channel-id UCxxxxxxxx\n\nRequired: --file, --title\nOptional: --description, --tags (comma-separated), --category (default 22 = People & Blogs), --privacy (private/unlisted/public, default private), --publish-at (ISO 8601 for scheduled publish, requires privacy=private), --made-for-kids, --channel-id (uses first channel if omitted)\n\nReturns JSON with videoId and url."
      },
      {
        "title": "Upload a custom thumbnail",
        "body": "python3 {baseDir}/scripts/youtube-upload.py thumbnail \\\n  --video-id VIDEO_ID \\\n  --file /path/to/thumbnail.jpg \\\n  --channel-id UCxxxxxxxx\n\nSupports JPEG, PNG, BMP, GIF. Max 2MB per YouTube API. The channel must be verified for custom thumbnails."
      },
      {
        "title": "Refresh token manually",
        "body": "python3 {baseDir}/scripts/youtube-upload.py refresh --channel-id UCxxxxxxxx"
      },
      {
        "title": "Workflow tips",
        "body": "Always upload as --privacy private first, verify, then update privacy if needed.\nUpload thumbnail immediately after video upload using the returned videoId.\nIf auth expires, re-run the auth subcommand.\nWhen the user doesn't specify a category, default to 22. See references/categories.md for the full list."
      },
      {
        "title": "References",
        "body": "See references/categories.md for YouTube video category IDs."
      }
    ],
    "body": "YouTube Uploader\n\nUpload videos with full metadata and custom thumbnails to YouTube via OAuth2.\n\nSetup (one-time)\n\nThe user needs a Google Cloud project with the YouTube Data API v3 enabled and an OAuth2 client ID (type \"Desktop app\"). Download the client_secret.json file.\n\nAuthenticate\npython3 {baseDir}/scripts/youtube-upload.py auth --client-secret /path/to/client_secret.json\n\n\nThis opens a browser for Google OAuth consent, then saves credentials to ~/.openclaw/youtube/channels.json. Multiple channels can be authenticated by repeating the command with different Google accounts.\n\nList authenticated channels\npython3 {baseDir}/scripts/youtube-upload.py channels\n\nUpload a video\npython3 {baseDir}/scripts/youtube-upload.py upload \\\n  --file /path/to/video.mp4 \\\n  --title \"Video Title\" \\\n  --description \"Video description\" \\\n  --tags \"tag1,tag2,tag3\" \\\n  --category 22 \\\n  --privacy private \\\n  --channel-id UCxxxxxxxx\n\n\nRequired: --file, --title Optional: --description, --tags (comma-separated), --category (default 22 = People & Blogs), --privacy (private/unlisted/public, default private), --publish-at (ISO 8601 for scheduled publish, requires privacy=private), --made-for-kids, --channel-id (uses first channel if omitted)\n\nReturns JSON with videoId and url.\n\nUpload a custom thumbnail\npython3 {baseDir}/scripts/youtube-upload.py thumbnail \\\n  --video-id VIDEO_ID \\\n  --file /path/to/thumbnail.jpg \\\n  --channel-id UCxxxxxxxx\n\n\nSupports JPEG, PNG, BMP, GIF. Max 2MB per YouTube API. The channel must be verified for custom thumbnails.\n\nRefresh token manually\npython3 {baseDir}/scripts/youtube-upload.py refresh --channel-id UCxxxxxxxx\n\nWorkflow tips\nAlways upload as --privacy private first, verify, then update privacy if needed.\nUpload thumbnail immediately after video upload using the returned videoId.\nIf auth expires, re-run the auth subcommand.\nWhen the user doesn't specify a category, default to 22. See references/categories.md for the full list.\nReferences\nSee references/categories.md for YouTube video category IDs."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Nachx639/youtube-uploader",
    "publisherUrl": "https://clawhub.ai/Nachx639/youtube-uploader",
    "owner": "Nachx639",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/youtube-uploader",
    "downloadUrl": "https://openagent3.xyz/downloads/youtube-uploader",
    "agentUrl": "https://openagent3.xyz/skills/youtube-uploader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/youtube-uploader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/youtube-uploader/agent.md"
  }
}