{
  "schemaVersion": "1.0",
  "item": {
    "slug": "publora-twitter",
    "name": "Publora — X / Twitter",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sergebulaev/publora-twitter",
    "canonicalUrl": "https://clawhub.ai/sergebulaev/publora-twitter",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/publora-twitter",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=publora-twitter",
    "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-twitter"
    },
    "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-twitter",
    "agentPageUrl": "https://openagent3.xyz/skills/publora-twitter/agent",
    "manifestUrl": "https://openagent3.xyz/skills/publora-twitter/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/publora-twitter/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 — X / Twitter",
        "body": "X/Twitter 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: twitter-{userId}"
      },
      {
        "title": "Platform Limits (API)",
        "body": "⚠️ API limits differ from native app. Design against these.\n\nPropertyAPI LimitNotesText280 characters25,000 with Premium accountImagesUp to 4 × 5 MBJPEG, PNG, GIF, WebPVideo2 min (120s) / 512 MB⚠️ Native allows 2:20 — API is stricterVideo formatMP4, MOV—Threading✅ Auto-split with ---—Text only✅ Yes—\n\nCommon errors:\n\nThis user is not allowed to post a video longer than 2 minutes — trim video to under 120s"
      },
      {
        "title": "Post a Tweet",
        "body": "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: 'Just shipped a new feature! 🚀 #buildinpublic',\n    platforms: ['twitter-123456789']\n  })\n});"
      },
      {
        "title": "Post a Thread",
        "body": "Separate tweets with --- on its own line:\n\nawait 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: '1/ Here is everything I learned building in public this year.\\n\\n---\\n\\n2/ First lesson: ship early, learn fast. Don\\'t wait for perfect.\\n\\n---\\n\\n3/ Second lesson: your audience is your best product team. Listen to them.',\n    platforms: ['twitter-123456789']\n  })\n});\n\nEach --- separator creates a new tweet in the thread, linked automatically."
      },
      {
        "title": "Schedule a Tweet",
        "body": "body: JSON.stringify({\n  content: 'Scheduled announcement: our product launches tomorrow! 🎉',\n  platforms: ['twitter-123456789'],\n  scheduledTime: '2026-03-20T14:00:00.000Z'\n})"
      },
      {
        "title": "Tweet with Image",
        "body": "Upload image via the 3-step media workflow (see publora core skill), then the image attaches to the post automatically via postGroupId."
      },
      {
        "title": "Platform Quirks",
        "body": "API video limit is 2 min — not 2:20 like the native app. Videos over 120s will fail.\nPNG images are supported unlike Instagram\nThreads: auto-splitting via --- separator works reliably on Twitter\nPremium accounts get 25,000 character limit — Publora will use the extended limit if your account is Premium\nGIF posts count as a video, not an image — different size/count rules apply"
      }
    ],
    "body": "Publora — X / Twitter\n\nX/Twitter 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: twitter-{userId}\n\nPlatform Limits (API)\n\n⚠️ API limits differ from native app. Design against these.\n\nProperty\tAPI Limit\tNotes\nText\t280 characters\t25,000 with Premium account\nImages\tUp to 4 × 5 MB\tJPEG, PNG, GIF, WebP\nVideo\t2 min (120s) / 512 MB\t⚠️ Native allows 2:20 — API is stricter\nVideo format\tMP4, MOV\t—\nThreading\t✅ Auto-split with ---\t—\nText only\t✅ Yes\t—\n\nCommon errors:\n\nThis user is not allowed to post a video longer than 2 minutes — trim video to under 120s\nPost a Tweet\nawait 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: 'Just shipped a new feature! 🚀 #buildinpublic',\n    platforms: ['twitter-123456789']\n  })\n});\n\nPost a Thread\n\nSeparate tweets with --- on its own line:\n\nawait 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: '1/ Here is everything I learned building in public this year.\\n\\n---\\n\\n2/ First lesson: ship early, learn fast. Don\\'t wait for perfect.\\n\\n---\\n\\n3/ Second lesson: your audience is your best product team. Listen to them.',\n    platforms: ['twitter-123456789']\n  })\n});\n\n\nEach --- separator creates a new tweet in the thread, linked automatically.\n\nSchedule a Tweet\nbody: JSON.stringify({\n  content: 'Scheduled announcement: our product launches tomorrow! 🎉',\n  platforms: ['twitter-123456789'],\n  scheduledTime: '2026-03-20T14:00:00.000Z'\n})\n\nTweet with Image\n\nUpload image via the 3-step media workflow (see publora core skill), then the image attaches to the post automatically via postGroupId.\n\nPlatform Quirks\nAPI video limit is 2 min — not 2:20 like the native app. Videos over 120s will fail.\nPNG images are supported unlike Instagram\nThreads: auto-splitting via --- separator works reliably on Twitter\nPremium accounts get 25,000 character limit — Publora will use the extended limit if your account is Premium\nGIF posts count as a video, not an image — different size/count rules apply"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/sergebulaev/publora-twitter",
    "publisherUrl": "https://clawhub.ai/sergebulaev/publora-twitter",
    "owner": "sergebulaev",
    "version": "2.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/publora-twitter",
    "downloadUrl": "https://openagent3.xyz/downloads/publora-twitter",
    "agentUrl": "https://openagent3.xyz/skills/publora-twitter/agent",
    "manifestUrl": "https://openagent3.xyz/skills/publora-twitter/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/publora-twitter/agent.md"
  }
}