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

### Publora — Instagram

Instagram 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: instagram-{accountId}

### Requirements

Instagram Business account (personal and Creator accounts are NOT supported by the Instagram Graph API)
Account must be connected to a Facebook Page
Connected via OAuth through the Publora dashboard

### Platform Limits (API)

⚠️ Instagram API is significantly more restrictive than the native app.

PropertyAPI LimitNative AppCaption2,200 characters2,200Images10 × 8 MB20 imagesImage formatJPEG only ⚠️PNG, GIF also workMixed carousel❌ No images + videos✅Reels duration90 seconds ⚠️15–20 minutesReels size300 MB—Carousel video60s per clip / 300 MB—Text only❌ Media required—Rate limit50 posts/24hr—

First 125 characters visible before "more".

Common errors:

(#10) The user is not an Instagram Business — Creator accounts not supported, switch to Business
Error 2207010 — caption exceeds 2,200 chars
Error 2207004 — image exceeds 8 MB
Error 9, Subcode 2207042 — rate limit reached

### Post an Image

// Step 1: Create the 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: 'Your caption here ✨ #hashtag',
    platforms: ['instagram-17841412345678'],
    scheduledTime: '2026-03-20T12:00:00.000Z'
  })
}).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',   // ⚠️ JPEG only for Instagram
    type: 'image'
  })
}).then(r => r.json());

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

### Post a Carousel (up to 10 images)

Call get-upload-url N times with the same postGroupId:

import requests

HEADERS = { 'Content-Type': 'application/json', 'x-publora-key': 'sk_YOUR_KEY' }

# Create post
post = requests.post('https://api.publora.com/api/v1/create-post', headers=HEADERS, json={
    'content': 'Swipe through our product highlights! 👆',
    'platforms': ['instagram-17841412345678'],
    'scheduledTime': '2026-03-20T12:00:00.000Z'
}).json()

# Upload each image (max 10)
images = ['slide1.jpg', 'slide2.jpg', 'slide3.jpg']
for img_path in images:
    upload = requests.post('https://api.publora.com/api/v1/get-upload-url', headers=HEADERS, json={
        'postGroupId': post['postGroupId'],
        'fileName': img_path,
        'contentType': 'image/jpeg',
        'type': 'image'
    }).json()
    with open(img_path, 'rb') as f:
        requests.put(upload['uploadUrl'], headers={'Content-Type': 'image/jpeg'}, data=f)

### Post a Reel (video, max 90s via API)

// Create post, then upload video via get-upload-url with type: 'video'
const post = await createPost({
  content: 'Check out our latest Reel! 🎬',
  platforms: ['instagram-17841412345678']
});

const upload = await getUploadUrl({
  postGroupId: post.postGroupId,
  fileName: 'reel.mp4',
  contentType: 'video/mp4',
  type: 'video'
});
// Then PUT the video file to upload.uploadUrl

⚠️ Reels via API are limited to 90 seconds. Longer videos will be rejected.

### Platform Quirks

JPEG only: The Instagram Graph API rejects PNG and GIF. Convert images to JPEG before uploading. Publora does NOT auto-convert for Instagram.
Business accounts only: Creator accounts ((#10) error) cannot use the Content Publishing API
No shopping tags, branded content, filters, or music via API
Carousels: API max is 10 items (native app allows 20); cannot mix images and videos in same carousel
WebP: Must be converted to JPEG manually before upload
## 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:25:50.949Z
- Expires at: 2026-05-14T14:25:50.949Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/publora-instagram)
- [Send to Agent page](https://openagent3.xyz/skills/publora-instagram/agent)
- [JSON manifest](https://openagent3.xyz/skills/publora-instagram/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/publora-instagram/agent.md)
- [Download page](https://openagent3.xyz/downloads/publora-instagram)