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

### 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.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: imamark
- Version: 1.0.1
## 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:18:58.935Z
- Expires at: 2026-05-14T14:18:58.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/publer)
- [Send to Agent page](https://openagent3.xyz/skills/publer/agent)
- [JSON manifest](https://openagent3.xyz/skills/publer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/publer/agent.md)
- [Download page](https://openagent3.xyz/downloads/publer)