Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

publora-bluesky普布洛拉蓝天

Agent Skill

publora-bluesky 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

15,936

周安装

651

GitHub Stars

公开资料未说明

下载量

5,156
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:publora-bluesky(普布洛拉蓝天)
来源仓库:https://github.com/sergebulaev/publora-bluesky
安装命令:
openclaw skills install publora-bluesky
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install publora-bluesky

简介

使用 Publora API 将内容发布或安排到 Bluesky。 Use this skill when the user wants to publish or schedule Bluesky posts via Publora.

SKILL.md

name
publora-bluesky
description
>

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)

PropertyLimitNotes
Text300 characters⚠️ Links count toward limit in Publora's validation
ImagesUp to 4 × ~976 KBAll formats accepted; Publora converts everything to JPEG before upload
Image dimensionsMax 2000×2000 px
Video3 min / 100 MBMP4; email verification required
Video (short)<60s → 50 MBSize tiers apply
Text 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 count in Publora's validation: Bluesky natively excludes link URLs from the char count, but Publora validates against content.length — so links DO consume your 300-char budget. Plan accordingly.
  • All images → JPEG: Publora converts ALL uploaded formats (PNG, WebP, GIF, TIFF, BMP) to JPEG via sharp before uploading to Bluesky. No manual conversion needed.
  • Image size is ~976 KB (not 1 MB): Publora enforces 976.56 × 1024 bytes. Compress images to 80–85% JPEG quality to stay under.
  • Auto-facets: Publora automatically detects #hashtags and URLs and creates proper Bluesky facets with correct byte offsets (handles emojis and multi-byte chars correctly)
  • altTexts silently ignored in API: The altTexts array in create-post is NOT currently processed — it will be silently ignored. Alt text is only available through the Publora dashboard.
  • test-connection always fails for Bluesky: Known bug — the validator checks for accessToken but Bluesky uses password. Connection still works for posting; ignore this status.
  • App password required: Never use your main Bluesky password; create a dedicated app password in Settings → App Passwords
  • Email verification required before video uploads (one-time step in Bluesky settings)
  • DID format: Platform ID uses the full DID, e.g. bluesky-did:plc:abc123xyz

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

85.82%
按下载量换算4,425

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills