# Send YouTube Uploader to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/youtube-uploader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youtube-uploader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/categories.md",
      "scripts/youtube-upload.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "youtube-uploader",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T14:23:56.783Z",
      "expiresAt": "2026-05-09T14:23:56.783Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youtube-uploader",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=youtube-uploader",
        "contentDisposition": "attachment; filename=\"youtube-uploader-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "youtube-uploader"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### YouTube Uploader

Upload videos with full metadata and custom thumbnails to YouTube via OAuth2.

### Setup (one-time)

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.

### Authenticate

python3 {baseDir}/scripts/youtube-upload.py auth --client-secret /path/to/client_secret.json

This 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.

### List authenticated channels

python3 {baseDir}/scripts/youtube-upload.py channels

### Upload a video

python3 {baseDir}/scripts/youtube-upload.py upload \\
  --file /path/to/video.mp4 \\
  --title "Video Title" \\
  --description "Video description" \\
  --tags "tag1,tag2,tag3" \\
  --category 22 \\
  --privacy private \\
  --channel-id UCxxxxxxxx

Required: --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)

Returns JSON with videoId and url.

### Upload a custom thumbnail

python3 {baseDir}/scripts/youtube-upload.py thumbnail \\
  --video-id VIDEO_ID \\
  --file /path/to/thumbnail.jpg \\
  --channel-id UCxxxxxxxx

Supports JPEG, PNG, BMP, GIF. Max 2MB per YouTube API. The channel must be verified for custom thumbnails.

### Refresh token manually

python3 {baseDir}/scripts/youtube-upload.py refresh --channel-id UCxxxxxxxx

### Workflow tips

Always upload as --privacy private first, verify, then update privacy if needed.
Upload thumbnail immediately after video upload using the returned videoId.
If auth expires, re-run the auth subcommand.
When the user doesn't specify a category, default to 22. See references/categories.md for the full list.

### References

See references/categories.md for YouTube video category IDs.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Nachx639
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T14:23:56.783Z
- Expires at: 2026-05-09T14:23:56.783Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/youtube-uploader)
- [Send to Agent page](https://openagent3.xyz/skills/youtube-uploader/agent)
- [JSON manifest](https://openagent3.xyz/skills/youtube-uploader/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/youtube-uploader/agent.md)
- [Download page](https://openagent3.xyz/downloads/youtube-uploader)