Token导航 LogoToken导航TokenDH.com
待分类敏感数据github未标认证来源可访问许可证需确认审计提醒

bluesky-post蓝天邮报

Agent Skill

bluesky-post 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

734

周安装

30

GitHub Stars

23

下载量

235
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/publora/skills --skill bluesky-post

简介

bluesky-post 用于向 Bluesky 发布文本、图片或视频内容,支持自动添加标签与 URL。

  • 它通过 Publora MCP 服务器对接,需注册账号并配置应用专用密码与 API Key。
  • 适用于社交媒体运营、公告发布或内容分发场景,支持定时发送与统计分析。
  • 使用前应确认发布频率限制与版权合规要求,避免违规内容或超额消耗额度。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Bluesky Post

Create and schedule posts to Bluesky using the Publora MCP server. Supports text posts with auto-detected hashtags and URLs, images with alt text, and videos.

Prerequisites

Plans: Free Starter (15 posts/month), Pro, Premium

Getting Started

  1. Create account at publora.com/register (free)
  2. Generate app password in Bluesky Settings > App Passwords (NOT your main password)
  3. Connect Bluesky in Publora Dashboard using your handle + app password
  4. Get API key at publora.com/settings/api
  5. Configure MCP in Claude Desktop (~/.claude/claude_desktop_config.json):
{
  "mcpServers": {
    "publora": {
      "type": "http",
      "url": "https://mcp.publora.com",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

REST API Fallback

If the MCP server is unavailable or returns errors, use the REST API directly:

Base URL: https://api.publora.com/api/v1

Authentication: Use x-publora-key header (NOT Authorization: Bearer):

# Get your connected platforms
curl -X GET "https://api.publora.com/api/v1/platform-connections" \
  -H "x-publora-key: sk_your_api_key"

# Create a post
curl -X POST "https://api.publora.com/api/v1/create-post" \
  -H "x-publora-key: sk_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "platforms": ["bluesky-did:plc:abc123xyz"],
    "content": "Your post content here",
    "scheduledTime": "2026-03-25T10:00:00Z"
  }'

Platform ID Format: bluesky-{did} where {did} is from /platform-connections response.

Example IDs: bluesky-did:plc:abc123xyz, bluesky-did:plc:def456uvw

📖 Full API documentation: docs.publora.com

Plan Limits

PlanPosts/monthPrice
Starter15Free
Pro100/account$2.99/account/month
Premium500/account$9.99/account/month

Platform Limits

FeatureLimit
Characters300
ImagesUp to 4 per post
Image size~1 MB (976.56 KB)
Video duration3 minutes
Video size50-100 MB (based on duration)
Videos per day25
Alt text2,000 characters per image

Video Size Tiers

DurationMax Size
Under 60s50 MB
60s - 3min100 MB

Rich Text Facets

Bluesky uses a unique rich text system. Publora handles the complexity automatically:

  • Hashtags: #hashtag auto-detected and made clickable
  • URLs: Any URL auto-detected and made clickable
  • Byte offsets: Calculated correctly for multi-byte characters (emojis, CJK)

No special formatting needed - just write naturally.

Available Tools

create_post

Create a new Bluesky post.

Parameters:

  • platforms: Array with your Bluesky connection ID (e.g., ["bluesky-did:plc:abc123xyz"])
  • content: Post text (up to 300 characters)
  • scheduledTime: ISO 8601 datetime (required - for immediate posting, use current time + 1 minute)
  • altTexts: Array of alt text for images (optional)

get_upload_url

Get presigned URL for media uploads.

Parameters:

  • postGroupId: Post ID to attach media to
  • fileName: File name (e.g., "photo.jpg")
  • contentType: image/jpeg, image/png, video/mp4
  • type: "image" or "video"

list_posts / update_post / delete_post

Manage scheduled and draft posts.

Examples

Simple Post with Hashtags

Post this to Bluesky:
"Just launched our new API documentation! Check it out at https://docs.example.com #devtools #api"

Hashtags and URLs are automatically made clickable.

Post with Image and Alt Text

Post this to Bluesky with a dashboard screenshot:
"Our new analytics view is live! #buildinpublic"

Alt text: "Screenshot of analytics dashboard showing user growth charts"

Multiple Images

Create a Bluesky post with before/after comparison images:
"Office renovation complete! What a transformation."

Note: Up to 4 images allowed per post.

Video Post

Post this 60-second demo video to Bluesky:
"Quick tour of our new mobile app features"

Scheduled Post

Schedule this for tomorrow at 10 AM:
"Good morning! Here's your daily productivity tip..."

Important Restrictions

  1. App password required: You must use a Bluesky app password, NOT your main account password. Generate one at Settings > App Passwords.
  2. All images converted to JPEG: Regardless of input format (PNG, WebP, GIF), all images are converted to JPEG before upload.
  3. ~1 MB image limit: The AT Protocol enforces a strict ~1 MB limit. Compress images to 80-85% JPEG quality.
  4. DID-based platform ID: Unlike other platforms using numeric IDs, Bluesky uses did:plc:xxx format.
  5. Email verification for video: You must verify your email in Bluesky before uploading videos.
  6. 25 video daily limit: Maximum 25 videos OR 10 GB per day.

Best Practices

Content

  1. Concise posts: 300 chars is shorter than Twitter - be punchy
  2. Natural hashtags: 1-2 relevant hashtags work well
  3. Alt text: Always add alt text for accessibility
  4. URLs work: Links are clickable (unlike some platforms)

Timing

  • Growing platform: Less crowded than X, easier to get noticed
  • Tech-savvy audience: Developer and early-adopter heavy
  • Frequency: 1-3 posts per day

Engagement

  • Bluesky favors authentic conversation
  • Reply to comments to build community
  • Follow relevant users to grow network

Troubleshooting

ErrorCauseSolution
"Invalid credentials"Wrong password typeUse app password, not main password
"Image too large"Over ~1 MBCompress to 80-85% JPEG quality
"Content too long"Over 300 charsShorten content (no auto-threading)
"Video daily limit"25 videos reachedWait 24 hours
"Email not verified"Trying to upload videoVerify email in Bluesky settings

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.46%
按下载量换算76

Claude

31.99%
按下载量换算75

Cursor

17.09%
按下载量换算40

Gemini CLI

10%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills