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

### Publora — Bluesky

Bluesky (AT Protocol) 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: bluesky-{did}

Where {did} is your Bluesky Decentralized Identifier (DID), assigned on connection.

### Requirements

A Bluesky account connected via username + app password (not your main password)
Generate an app password: Bluesky Settings → App Passwords
Connected through the Publora dashboard

### Platform Limits (API)

PropertyLimitNotesText300 charactersLinks do NOT count toward limitImagesUp to 4 × 1 MBJPEG, PNG, WebP (max 2000×2000 px)Video3 min / 100 MBMP4; email verification requiredVideo (short)<60s → 50 MBSize tiers applyText only✅ Yes—Daily video limit25 videos / 10 GB—Rate limit3,000 req/5 min—

Common errors:

429 Too Many Requests — rate limit exceeded, wait and retry
Video JOB_STATE_FAILED — check format (MP4) and size tier

### Post a Skeet (text 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: 'Building in public on Bluesky today! Links, hashtags, and mentions all auto-detected. #buildinpublic',
    platforms: ['bluesky-did:plc:abc123']
  })
});

Publora automatically detects hashtags, URLs, and @mentions and creates proper AT Protocol facets.

### Schedule a Post

body: JSON.stringify({
  content: 'Your Bluesky post here',
  platforms: ['bluesky-did:plc:abc123'],
  scheduledTime: '2026-03-20T11:00:00.000Z'
})

### Post with Image

⚠️ Bluesky has a strict 1 MB limit per image. Compress to 80–85% JPEG quality.

import requests

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

# Step 1: Create post
post = requests.post('https://api.publora.com/api/v1/create-post', headers=HEADERS, json={
    'content': 'Check out this photo! 📸',
    'platforms': ['bluesky-did:plc:abc123']
}).json()

# Step 2: Get upload URL (make sure image is <1 MB and JPEG/PNG/WebP)
upload = requests.post('https://api.publora.com/api/v1/get-upload-url', headers=HEADERS, json={
    'postGroupId': post['postGroupId'],
    'fileName': 'photo.jpg',
    'contentType': 'image/jpeg',
    'type': 'image'
}).json()

# Step 3: Upload
with open('photo_compressed.jpg', 'rb') as f:
    requests.put(upload['uploadUrl'], headers={'Content-Type': 'image/jpeg'}, data=f)

### Platform Quirks

Links don't count toward the 300-char limit — great for posts with URLs
Auto-facets: Publora automatically detects #hashtags, @mentions, and URLs and creates proper Bluesky facets
Image size is strict: 1 MB hard limit per image. Always compress before upload.
Image dimensions: Max 2000×2000 pixels
App password required: Never use your main Bluesky password; create a dedicated app password
Email verification: Required before you can upload videos (one-time step in Bluesky settings)
DID format: Platform ID uses the full DID, e.g. bluesky-did:plc:abc123xyz
## 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:35:35.075Z
- Expires at: 2026-05-14T14:35:35.075Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/publora-bluesky)
- [Send to Agent page](https://openagent3.xyz/skills/publora-bluesky/agent)
- [JSON manifest](https://openagent3.xyz/skills/publora-bluesky/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/publora-bluesky/agent.md)
- [Download page](https://openagent3.xyz/downloads/publora-bluesky)