{
  "schemaVersion": "1.0",
  "item": {
    "slug": "publora-youtube",
    "name": "Publora — YouTube",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sergebulaev/publora-youtube",
    "canonicalUrl": "https://clawhub.ai/sergebulaev/publora-youtube",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/publora-youtube",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=publora-youtube",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "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/publora-youtube"
    },
    "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/publora-youtube",
    "agentPageUrl": "https://openagent3.xyz/skills/publora-youtube/agent",
    "manifestUrl": "https://openagent3.xyz/skills/publora-youtube/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/publora-youtube/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": "Publora — YouTube",
        "body": "YouTube platform skill for the Publora API. For auth, core scheduling, media upload, and workspace/webhook docs, see the publora core skill.\n\nBase URL: https://api.publora.com/api/v1\nHeader: x-publora-key: sk_YOUR_KEY\nPlatform ID format: youtube-{channelId}"
      },
      {
        "title": "Platform Limits (API)",
        "body": "PropertyLimitNotesTitle100 characters—Description5,000 charactersFirst 150 chars visibleVideo duration12 hours—Video size256 GB—Video formatsMP4, MOV, AVI, WebM—Images❌ Video only—Text only❌ Video required—Privacypublic / unlisted / privateDefault: public"
      },
      {
        "title": "Upload a YouTube Video",
        "body": "YouTube requires video and supports privacy settings and metadata:\n\n// Step 1: Create post with YouTube-specific platform settings\nconst post = await fetch('https://api.publora.com/api/v1/create-post', {\n  method: 'POST',\n  headers: { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' },\n  body: JSON.stringify({\n    content: 'Your video description here. Full details about what this video covers.',\n    platforms: ['youtube-UC_CHANNEL_ID'],\n    scheduledTime: '2026-03-20T15:00:00.000Z'\n  })\n}).then(r => r.json());\n\n// Step 2: Get upload URL\nconst upload = await fetch('https://api.publora.com/api/v1/get-upload-url', {\n  method: 'POST',\n  headers: { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' },\n  body: JSON.stringify({\n    postGroupId: post.postGroupId,\n    fileName: 'video.mp4',\n    contentType: 'video/mp4',\n    type: 'video'\n  })\n}).then(r => r.json());\n\n// Step 3: Upload video to S3\nawait fetch(upload.uploadUrl, {\n  method: 'PUT',\n  headers: { 'Content-Type': 'video/mp4' },\n  body: videoFileBytes\n});"
      },
      {
        "title": "Python Example",
        "body": "import requests\n\nHEADERS = { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' }\n\n# Step 1: Create post (content = video description)\npost = requests.post('https://api.publora.com/api/v1/create-post', headers=HEADERS, json={\n    'content': 'Complete guide to building REST APIs in 2026. We cover authentication, rate limiting, and best practices.',\n    'platforms': ['youtube-UC_CHANNEL_ID'],\n    'scheduledTime': '2026-03-20T15:00:00.000Z'\n}).json()\n\n# Step 2: Get upload URL\nupload = requests.post('https://api.publora.com/api/v1/get-upload-url', headers=HEADERS, json={\n    'postGroupId': post['postGroupId'],\n    'fileName': 'tutorial.mp4',\n    'contentType': 'video/mp4',\n    'type': 'video'\n}).json()\n\n# Step 3: Upload\nwith open('tutorial.mp4', 'rb') as f:\n    requests.put(upload['uploadUrl'], headers={'Content-Type': 'video/mp4'}, data=f)\n\nprint(f\"Scheduled: {post['postGroupId']}\")"
      },
      {
        "title": "Platform Quirks",
        "body": "Video only — YouTube does not support images or text-only posts\ncontent field = description — the content field maps to the YouTube video description\nTitle: Set via platform settings (defaults to first line of description if not set)\nPrivacy: Defaults to public. Can be set to unlisted or private via platform settings\nYouTube Shorts: Videos under 60 seconds in portrait orientation (9:16) are automatically treated as Shorts\nLarge files: 256 GB max — YouTube is the most generous platform for file size\nProcessing time: YouTube processes uploaded videos before they go live; scheduling accounts for this"
      }
    ],
    "body": "Publora — YouTube\n\nYouTube platform skill for the Publora API. For auth, core scheduling, media upload, and workspace/webhook docs, see the publora core skill.\n\nBase URL: https://api.publora.com/api/v1\nHeader: x-publora-key: sk_YOUR_KEY\nPlatform ID format: youtube-{channelId}\n\nPlatform Limits (API)\nProperty\tLimit\tNotes\nTitle\t100 characters\t—\nDescription\t5,000 characters\tFirst 150 chars visible\nVideo duration\t12 hours\t—\nVideo size\t256 GB\t—\nVideo formats\tMP4, MOV, AVI, WebM\t—\nImages\t❌ Video only\t—\nText only\t❌ Video required\t—\nPrivacy\tpublic / unlisted / private\tDefault: public\nUpload a YouTube Video\n\nYouTube requires video and supports privacy settings and metadata:\n\n// Step 1: Create post with YouTube-specific platform settings\nconst post = await fetch('https://api.publora.com/api/v1/create-post', {\n  method: 'POST',\n  headers: { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' },\n  body: JSON.stringify({\n    content: 'Your video description here. Full details about what this video covers.',\n    platforms: ['youtube-UC_CHANNEL_ID'],\n    scheduledTime: '2026-03-20T15:00:00.000Z'\n  })\n}).then(r => r.json());\n\n// Step 2: Get upload URL\nconst upload = await fetch('https://api.publora.com/api/v1/get-upload-url', {\n  method: 'POST',\n  headers: { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' },\n  body: JSON.stringify({\n    postGroupId: post.postGroupId,\n    fileName: 'video.mp4',\n    contentType: 'video/mp4',\n    type: 'video'\n  })\n}).then(r => r.json());\n\n// Step 3: Upload video to S3\nawait fetch(upload.uploadUrl, {\n  method: 'PUT',\n  headers: { 'Content-Type': 'video/mp4' },\n  body: videoFileBytes\n});\n\nPython Example\nimport requests\n\nHEADERS = { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' }\n\n# Step 1: Create post (content = video description)\npost = requests.post('https://api.publora.com/api/v1/create-post', headers=HEADERS, json={\n    'content': 'Complete guide to building REST APIs in 2026. We cover authentication, rate limiting, and best practices.',\n    'platforms': ['youtube-UC_CHANNEL_ID'],\n    'scheduledTime': '2026-03-20T15:00:00.000Z'\n}).json()\n\n# Step 2: Get upload URL\nupload = requests.post('https://api.publora.com/api/v1/get-upload-url', headers=HEADERS, json={\n    'postGroupId': post['postGroupId'],\n    'fileName': 'tutorial.mp4',\n    'contentType': 'video/mp4',\n    'type': 'video'\n}).json()\n\n# Step 3: Upload\nwith open('tutorial.mp4', 'rb') as f:\n    requests.put(upload['uploadUrl'], headers={'Content-Type': 'video/mp4'}, data=f)\n\nprint(f\"Scheduled: {post['postGroupId']}\")\n\nPlatform Quirks\nVideo only — YouTube does not support images or text-only posts\ncontent field = description — the content field maps to the YouTube video description\nTitle: Set via platform settings (defaults to first line of description if not set)\nPrivacy: Defaults to public. Can be set to unlisted or private via platform settings\nYouTube Shorts: Videos under 60 seconds in portrait orientation (9:16) are automatically treated as Shorts\nLarge files: 256 GB max — YouTube is the most generous platform for file size\nProcessing time: YouTube processes uploaded videos before they go live; scheduling accounts for this"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/sergebulaev/publora-youtube",
    "publisherUrl": "https://clawhub.ai/sergebulaev/publora-youtube",
    "owner": "sergebulaev",
    "version": "1.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/publora-youtube",
    "downloadUrl": "https://openagent3.xyz/downloads/publora-youtube",
    "agentUrl": "https://openagent3.xyz/skills/publora-youtube/agent",
    "manifestUrl": "https://openagent3.xyz/skills/publora-youtube/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/publora-youtube/agent.md"
  }
}