← All skills
Tencent SkillHub · Developer Tools

Publora — Mastodon

Post or schedule content to Mastodon using the Publora API. Use this skill when the user wants to publish or schedule Mastodon posts via Publora.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Post or schedule content to Mastodon using the Publora API. Use this skill when the user wants to publish or schedule Mastodon posts via Publora.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.2.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 6 sections Open source page

Publora — Mastodon

Mastodon / Fediverse 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: mastodon-{accountId} Note: Publora currently posts to the mastodon.social instance. Other instances are not supported at this time.

Platform Limits (API)

PropertyLimitNotesText (toot)500 charactersInstance-configurable; some allow 5,000+ImagesUp to 4 × 16 MBJPEG, PNG, GIF, WebPVideo~99 MBMP4, MOV, WebM; no duration limit, capped by sizeText only✅ Yes—Rate limit30 media uploads/30 min300 requests/5 min per account

Post a Toot (text)

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: 'Hello Fediverse! Building open, decentralized tools for everyone. #fediverse #opensource', platforms: ['mastodon-123456789'] }) });

Schedule a Toot

body: JSON.stringify({ content: 'Your Mastodon post here', platforms: ['mastodon-123456789'], scheduledTime: '2026-03-20T10:00:00.000Z' })

Post with Image

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': 'Here is a photo from our event 📷 #community', 'platforms': ['mastodon-123456789'] }).json() # Step 2: Get upload URL (up to 16 MB, JPEG/PNG/GIF/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.jpg', 'rb') as f: requests.put(upload['uploadUrl'], headers={'Content-Type': 'image/jpeg'}, data=f)

Platform Quirks

mastodon.social only — Publora currently supports this instance Generous image limit: 16 MB per image, much more than most platforms Video capped by size (~99 MB default) — no explicit duration limit WebP supported — unlike Instagram, Mastodon accepts WebP natively Federation: Posts federate automatically to the broader Fediverse Hashtags: Important for discoverability on Mastodon — use them in posts Content warnings: Not directly supported via Publora API yet; use text conventions if needed

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc