# Send Publora — Threads 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": "publora-threads",
    "name": "Publora — Threads",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sergebulaev/publora-threads",
    "canonicalUrl": "https://clawhub.ai/sergebulaev/publora-threads",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/publora-threads",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=publora-threads",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "publora-threads",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T14:17:51.081Z",
      "expiresAt": "2026-05-14T14:17:51.081Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=publora-threads",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=publora-threads",
        "contentDisposition": "attachment; filename=\"publora-threads-2.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "publora-threads"
      },
      "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/publora-threads"
    },
    "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/publora-threads",
    "downloadUrl": "https://openagent3.xyz/downloads/publora-threads",
    "agentUrl": "https://openagent3.xyz/skills/publora-threads/agent",
    "manifestUrl": "https://openagent3.xyz/skills/publora-threads/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/publora-threads/agent.md"
  }
}
```
## Documentation

### Publora — Threads

Threads platform skill for the Publora API. For auth, core scheduling, media upload, and workspace/webhook docs, see the publora core skill.

Base URL: https://api.publora.com/api/v1
Header: x-publora-key: sk_YOUR_KEY
Platform ID format: threads-{accountId}

### ⚠️ Temporary Restriction — Thread Nesting Unavailable

Multi-threaded nested posts are temporarily unavailable on Threads due to Threads app reconnection status.

This means: content over 500 characters that would normally auto-split into connected reply chains does not work right now.

What still works normally:

Single posts (text, images, videos, carousels)
Standalone posts under 500 characters

Contact support@publora.com for updates on when thread nesting will be restored.

### Platform Limits (API)

PropertyAPI LimitNotesText500 characters10,000 via text attachmentImagesUp to 20 × 8 MBJPEG, PNGVideo5 min / 500 MBMP4, MOVMax links5 per post—Text only✅ Yes—Threading⚠️ Temporarily unavailableSee aboveRate limit250 posts/24hr1,000 replies/24hr

### Post a Single Thread

await fetch('https://api.publora.com/api/v1/create-post', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' },
  body: JSON.stringify({
    content: 'Building in public is the best marketing strategy. Here\\'s why 👇',
    platforms: ['threads-17841412345678']
  })
});

### Schedule a Post

body: JSON.stringify({
  content: 'Your Threads post here',
  platforms: ['threads-17841412345678'],
  scheduledTime: '2026-03-20T10:00:00.000Z'
})

### Post with Image

// Step 1: Create post
const post = await fetch('https://api.publora.com/api/v1/create-post', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' },
  body: JSON.stringify({
    content: 'Caption for your image post',
    platforms: ['threads-17841412345678']
  })
}).then(r => r.json());

// Step 2: Get upload URL
const upload = await fetch('https://api.publora.com/api/v1/get-upload-url', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' },
  body: JSON.stringify({
    postGroupId: post.postGroupId,
    fileName: 'photo.jpg',
    contentType: 'image/jpeg',
    type: 'image'
  })
}).then(r => r.json());

// Step 3: Upload to S3
await fetch(upload.uploadUrl, {
  method: 'PUT',
  headers: { 'Content-Type': 'image/jpeg' },
  body: imageBytes
});

### Thread Nesting (when available)

When thread nesting is restored, you can split long content using --- on its own line:

body: JSON.stringify({
  content: 'First post in thread.\\n\\n---\\n\\nSecond post continues the thought.\\n\\n---\\n\\nFinal post wraps up.',
  platforms: ['threads-17841412345678']
})

⚠️ Currently disabled. Single posts and carousels work normally.

### Platform Quirks

Connected via Meta OAuth — same account as Instagram
5 links per post max — Threads enforces this at the API level
PNG supported — unlike Instagram, Threads accepts PNG images
Threading restriction — see the notice at the top of this skill
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sergebulaev
- Version: 2.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-07T14:17:51.081Z
- Expires at: 2026-05-14T14:17:51.081Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/publora-threads)
- [Send to Agent page](https://openagent3.xyz/skills/publora-threads/agent)
- [JSON manifest](https://openagent3.xyz/skills/publora-threads/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/publora-threads/agent.md)
- [Download page](https://openagent3.xyz/downloads/publora-threads)