โ† All skills
Tencent SkillHub ยท Developer Tools

Publer

Post content to social media via the Publer API. Use when scheduling or publishing posts to TikTok (carousels, videos), Instagram, Facebook, Twitter/X, or an...

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

Post content to social media via the Publer API. Use when scheduling or publishing posts to TikTok (carousels, videos), Instagram, Facebook, Twitter/X, or an...

โฌ‡ 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
requirements.txt, SKILL.md, scripts/publer.py, references/api.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.0.1

Documentation

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

Publer Post

Post and schedule social media content via the Publer API.

Prerequisites

Python Dependencies: pip install -r requirements.txt Environment Variables (store in TOOLS.md or set before running): PUBLER_API_KEY โ€” API key from Publer (Business plan required) PUBLER_WORKSPACE_ID โ€” Your workspace ID PUBLER_TIKTOK_ACCOUNT_ID โ€” TikTok account ID (optional, get via accounts command)

List accounts

python3 scripts/publer.py accounts Use this first to discover account IDs.

Upload media

python3 scripts/publer.py upload slide_1.jpg slide_2.jpg slide_3.jpg Returns media IDs (one per line as JSON). Collect these for the post command.

Post TikTok carousel (immediate)

python3 scripts/publer.py post \ --account-id $PUBLER_TIKTOK_ACCOUNT_ID \ --type photo \ --title "Post title (max 90 chars)" \ --text "Caption with #hashtags" \ --media-ids id1,id2,id3,id4,id5,id6,id7,id8

Schedule TikTok carousel

python3 scripts/publer.py post \ --account-id $PUBLER_TIKTOK_ACCOUNT_ID \ --type photo \ --title "Post title" \ --text "Caption" \ --media-ids id1,id2,id3 \ --schedule "2025-06-01T09:00:00Z"

Dry run (preview payload)

Add --dry-run to print the JSON payload without sending.

Check job status

python3 scripts/publer.py job-status <job_id>

Workflow: Post a TikTok Carousel

Upload all slide images โ†’ collect media IDs Run post with --type photo, title, caption+hashtags, and comma-separated media IDs Script polls job until complete โ€” confirm success

Options

--privacy: PUBLIC_TO_EVERYONE (default), MUTUAL_FOLLOW_FRIENDS, FOLLOWER_OF_CREATOR, SELF_ONLY --auto-music / --no-auto-music: auto-add music to carousel (default: on) --no-poll: submit without waiting for completion

API Reference

For full endpoint details, see references/api.md.

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
2 Docs1 Scripts1 Files
  • SKILL.md Primary doc
  • references/api.md Docs
  • scripts/publer.py Scripts
  • requirements.txt Files