Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

post-bridge-social-manager桥梁后社会经理

Agent Skill

post-bridge-social-manager 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

51,188

周安装

2,091

GitHub Stars

10

下载量

16,393
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:post-bridge-social-manager(桥梁后社会经理)
来源仓库:https://github.com/jackfriks/post-bridge-social-manager
安装命令:
openclaw skills install post-bridge-social-manager
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install post-bridge-social-manager

简介

利用 Post Bridge API 实现 TikTok、Instagram 等平台内容自动发布。

  • 支持定时安排、批量管理与跨平台账号同步操作。
  • 适用于社交媒体运营自动化与内容排期规划。
  • 安装命令:openclaw skills install post-bridge-social-manager;需绑定各平台开发者账号。
  • 发布前请审核文案与图片,避免违反社区准则导致限流。

SKILL.md

name
post-bridge-social-manager
version
1.0.7
title
Social Media Assistant (via post-bridge.com)
description
Turn your OpenClaw into an autonomous social media manager using Post Bridge API. Use when scheduling, posting, or managing content across TikTok, Instagram Reels, YouTube Shorts, Twitter/X, LinkedIn, Pinterest, Facebook, Threads, or Bluesky. Covers media upload, post creation, scheduling, platform-specific configs, draft mode, and post result tracking.
license
MIT
author
Jack Friks <jack@frikit.net>
homepage
https://clawhub.ai/jackfriks/post-bridge-social-manager
repository
https://github.com/jackfriks/post-bridge-social-manager
keywords
social-media, automation, post-bridge, tiktok, instagram, youtube, twitter, linkedin
metadata
openclaw
requires
env
bins
primaryEnv
POST_BRIDGE_API_KEY

Social Media Assistant (via post-bridge.com)

Autonomously manage social media posting via Post Bridge API.

Setup

  1. Create a Post Bridge account at post-bridge.com
  2. Connect your social accounts (TikTok, Instagram, YouTube, Twitter, etc.)
  3. Enable API access (Settings → API)
  4. Store your API key in workspace .env:
   POST_BRIDGE_API_KEY=pb_live_xxxxx
  1. Download API docs: https://api.post-bridge.com/reference → save to workspace as post-bridge-api.json

Auth

All requests use Bearer token:

Authorization: Bearer <POST_BRIDGE_API_KEY>

Base URL: https://api.post-bridge.com

Core Workflow

1. Get Social Accounts

GET /v1/social-accounts

Returns array of connected accounts with id, platform, username. Store these IDs — you need them for every post.

2. Upload Media

POST /v1/media/create-upload-url
Body: { "mime_type": "video/mp4", "size_bytes": <int>, "name": "video.mp4" }

Returns media_id + upload_url. Then:

PUT <upload_url>
Content-Type: video/mp4
Body: <binary file>

3. Create Post

POST /v1/posts
Body: {
  "caption": "your caption here #hashtags",
  "media": ["<media_id>"],
  "social_accounts": [<account_id_1>, <account_id_2>],
  "scheduled_at": "2026-01-01T14:00:00Z",  // omit for instant post
  "platform_configurations": { ... }  // optional, see below
}

Additional create options:

  • media_urls: Array of publicly accessible URLs (used instead of media if no media IDs). Example: ["https://example.com/video.mp4"]
  • is_draft: If true, creates the post but does not process it until updated with a scheduled date or posted instantly later.
  • processing_enabled: If false, skips video processing. Defaults to true.
  • use_queue: Automatically schedule to your next available queue slot (configured in the Post Bridge dashboard). Cannot be used with scheduled_at. Pass true to use your saved timezone, or { "timezone": "America/New_York" } to override.

use_queue example:

{
  "caption": "Queued post!",
  "media": ["<media_id>"],
  "social_accounts": [44029],
  "use_queue": true
}

This finds the next open slot in your queue schedule and sets scheduled_at automatically. You must have a queue schedule configured in the dashboard first.

4. Update or Delete Scheduled Posts

PATCH /v1/posts/<post_id>

Update a scheduled post (caption, schedule time, etc.). Only works on posts with scheduled status.

DELETE /v1/posts/<post_id>

Delete a scheduled post. Only works on posts with scheduled status.

5. Check Results

GET /v1/posts/<post_id>

Returns status: processing, scheduled, posted, failed.

GET /v1/post-results

List all post results across platforms (paginated with offset and limit).

6. Analytics

GET /v1/analytics

Retrieve performance data (views, likes, shares, comments, etc.) for posts.

Query parameters:

  • platform — filter by platform (e.g. tiktok, youtube, instagram)
  • post_result_id[] — filter by specific post result IDs (multiple values = OR logic)
  • timeframe7d, 30d, 90d, or all (default: all)
  • offset / limit — pagination

Returns: view_count, like_count, comment_count, share_count, cover_image_url, share_url, duration, and more per record.

POST /v1/analytics/sync

Manually trigger a sync of analytics from platforms. Optionally pass ?platform=tiktok to sync a specific platform only. Rate-limited to once every 5 minutes.

Platform Configurations

Pass inside platform_configurations object on post creation. Crucial: Always wrap these in the correct platform key to ensure they only apply to the target platform and don't cause issues on other platforms in the same post.

TikTok (tiktok):

  • draft: true — save as draft (publish manually on TikTok with trending sound)
  • video_cover_timestamp_ms: 3000 — cover thumbnail
  • is_aigc: true — label as AI-generated content

Example of correct multi-platform config:

{
  "caption": "Default caption",
  "social_accounts": [44029, 44030],
  "platform_configurations": {
    "tiktok": {
      "draft": true,
      "is_aigc": false
    },
    "instagram": {
      "is_trial_reel": false
    }
  }
}

Instagram (instagram):

  • video_cover_timestamp_ms: 3000 — cover thumbnail
  • is_trial_reel: true — trial reel mode (needs 1000+ followers)
  • trial_graduation: "SS_PERFORMANCE" — auto-graduate based on performance

YouTube:

  • video_cover_timestamp_ms: 3000 — cover thumbnail
  • title: "My Short Title" — override post title

Twitter/X:

  • caption: "override caption" — platform-specific caption

All platforms support caption and media overrides for per-platform customization.

Recommended Workflow for Video Content

  1. Store videos in a local folder
  2. Extract a frame with ffmpeg to read any text overlays:
   ffmpeg -i video.mp4 -ss 00:00:04 -frames:v 1 frame.jpg -y
  1. Write caption based on video content + hashtags
  2. Upload → create post → schedule or post instantly (or use use_queue to auto-schedule)
  3. Move posted videos to a posted/ subfolder to avoid duplicates
  4. Set a cron to check post status 5 mins after scheduled time
  5. Track performance with GET /v1/analytics or by browsing platform pages

Tips

  • Post to multiple platforms simultaneously by including multiple account IDs
  • Stagger posts throughout the day (e.g. 9am + 3pm) for better reach
  • Use scheduled_at to pre-schedule batches — Post Bridge handles the timing
  • Use use_queue to auto-fill your queue schedule without calculating times yourself
  • TikTok draft mode lets you add trending sounds manually before publishing
  • Keep hashtags to 4-5 per post for best engagement
  • Monitor what works and iterate on captions/formats

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.79%
按下载量换算11,605

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills