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

### Publora — Facebook

Facebook 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: facebook-{pageId}

If you manage multiple Pages, each Page gets its own platform ID.

### Requirements

A Facebook Page (not a personal profile) connected via OAuth
Page admin permissions granted during OAuth

### Platform Limits (API)

⚠️ API video limits are significantly stricter than native.

PropertyAPI LimitNative AppText63,206 charactersSameImagesUp to 10 × 10 MBJPEG, PNG, GIF, BMP, TIFFVideo45 min / 2 GB240 min / 4 GBReels duration90 seconds90 secondsReels rate limit30 Reels/day/Page—Reels postingPages only (not profiles)—Text only✅ Yes—

Common errors:

Error 1363026 — video over 40 min → trim to under 45 min
Error 1363023 — file over 2 GB → compress
Error 1363128 — Reels duration outside 3–90s range

Posts under 80 characters get 66% more engagement on Facebook.

### Post a Text Update

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: 'Exciting news from our team! We just launched a new feature. Check it out at publora.com 🎉',
    platforms: ['facebook-123456789']
  })
});

### Schedule a Post

body: JSON.stringify({
  content: 'Your Facebook Page update',
  platforms: ['facebook-123456789'],
  scheduledTime: '2026-03-20T13: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: 'Check out our latest product photo!',
    platforms: ['facebook-123456789']
  })
}).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
await fetch(upload.uploadUrl, {
  method: 'PUT',
  headers: { 'Content-Type': 'image/jpeg' },
  body: imageBytes
});

### Post a Reel (3–90 seconds)

Use the same flow but upload a short video file. Reels are posted to Pages only.

### Platform Quirks

Pages only — personal profiles are not supported via the Facebook Graph API
Multiple pages — each Page has a separate platform ID; connect them individually in Publora dashboard
Video limits: 45 min / 2 GB via API (native allows 240 min / 4 GB)
Reels: Must be 3–90 seconds; limited to 30 per day per Page
Carousels: Up to 10 images or videos (cannot mix in the same carousel)
Rate limit formula: 200 × users/hour
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sergebulaev
- Version: 1.2.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:30:30.961Z
- Expires at: 2026-05-14T14:30:30.961Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/publora-facebook)
- [Send to Agent page](https://openagent3.xyz/skills/publora-facebook/agent)
- [JSON manifest](https://openagent3.xyz/skills/publora-facebook/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/publora-facebook/agent.md)
- [Download page](https://openagent3.xyz/downloads/publora-facebook)