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

agent-postmoore特工波斯特摩尔

Agent Skill

agent-postmoore 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,569

周安装

106

GitHub Stars

公开资料未说明

下载量

840
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:agent-postmoore(特工波斯特摩尔)
来源仓库:https://github.com/rkotchamp/agent-postmoore
安装命令:
openclaw skills install agent-postmoore
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install agent-postmoore

简介

自主发布与管理社交媒体内容,支持 Instagram、TikTok、YouTube Shorts 等平台排程。

  • 适用于品牌运营、广告投放与跨平台内容分发场景。
  • 可上传媒体、保存草稿并按计划定时发布。agent-postmoore 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 使用前需授权各平台账号并遵守社区指南与版权政策。
  • 建议设置内容审核机制避免违规信息传播。

SKILL.md

name
postmoore
description
Post to Instagram, TikTok, YouTube Shorts, LinkedIn, Facebook, Threads, and Bluesky via the Postmoore API. Schedule posts, upload media, save drafts, and manage content autonomously.
version
1.1.0
emoji
🚀
homepage
https://postmoo.re
metadata
{"openclaw": {"requires": {"env": ["POSTMOORE_API_KEY"]}, "primaryEnv": "POSTMOORE_API_KEY", "requires": {"bins": ["ffmpeg"], "env": ["POSTMOORE_API_KEY"]}}}

Postmoore — Social Media Assistant

Autonomously manage social media posting via the Postmoore API.

Setup

  1. Create a Postmoore account at postmoo.re
  2. Connect your social accounts (Instagram, TikTok, YouTube Shorts, LinkedIn, Facebook, Threads, Bluesky)
  3. Go to Profile → API Keys and generate an API key (Creator or Premium plan required)
  4. Store your key in your workspace .env:
POSTMOORE_API_KEY=pm_live_xxxxx

Auth

All requests use a Bearer token:

Authorization: Bearer <POSTMOORE_API_KEY>

Base URL: https://postmoo.re/api/v1

Core Workflow

1. Get Social Accounts

GET /accounts

Optional filter by platform:

GET /accounts?platform=tiktok

Supported platform values: instagram · tiktok · ytshorts · linkedin · facebook · threads · bluesky

Returns an array of connected accounts. Each account has:

  • id — use this in every post request
  • platform — the platform name
  • displayName — the account display name
  • platformUsername — username on the platform
  • status — always active

Always fetch account IDs before posting — never guess them.

2. Upload Media

POST /media
Content-Type: multipart/form-data

file: <binary>

Supported formats: image/jpeg · image/png · image/gif · image/webp · video/mp4 · video/quicktime · video/webm

Max file size: 100 MB. Storage quota: 5 GB (Creator plan) · 20 GB (Premium plan).

Returns:

{
  "data": {
    "id": "uploads/user123/filename.mp4",
    "type": "video",
    "url": "https://storage.postmoo.re/...",
    "mimeType": "video/mp4",
    "size": 10485760,
    "filename": "video.mp4"
  }
}

Save both id and url — you need both when creating a media post.

3. Create a Post

POST /posts
Content-Type: application/json

Text post (post now):

{
  "contentType": "text",
  "text": "Your caption here #hashtags",
  "accounts": ["<account_id_1>", "<account_id_2>"],
  "schedule": { "type": "now" }
}

Text post (scheduled):

{
  "contentType": "text",
  "text": "Scheduled caption #hashtags",
  "accounts": ["<account_id_1>"],
  "schedule": { "type": "scheduled", "at": "2026-06-01T14:00:00Z" }
}

Media post (image or video):

{
  "contentType": "media",
  "text": "Caption for the post #hashtags",
  "media": [{ "id": "<id_from_upload>", "url": "<url_from_upload>" }],
  "accounts": ["<account_id_1>", "<account_id_2>"],
  "schedule": { "type": "now" }
}

Draft (save without publishing):

{
  "contentType": "text",
  "text": "Draft caption to review",
  "accounts": ["<account_id_1>"],
  "schedule": { "type": "draft" }
}

schedule options:

  • { "type": "now" } — publish immediately
  • { "type": "scheduled", "at": "<ISO 8601 datetime>" } — schedule for future
  • { "type": "draft" } — save as draft, no publishing

Returns post object with:

  • id — post ID
  • statuspending · scheduled · published · failed · draft
  • accounts — array of { id, platform }
  • results — per-platform result with success, postId, url, error

4. List Posts

GET /posts
GET /posts?status=scheduled
GET /posts?status=draft&page=1&limit=20

Status filters: pending · scheduled · published · failed · draft

Pagination params: page (default 1) · limit (default 20, max 100)

Returns paginated array with data and pagination object containing page, limit, total, totalPages, hasMore.

5. Get a Single Post

GET /posts/<post_id>

Returns full post object including per-platform results.

6. Delete a Post

DELETE /posts/<post_id>

Only works on posts with status pending or draft. Scheduled and published posts cannot be deleted.

Returns { "data": { "id": "<post_id>", "deleted": true } }.

Recommended Workflow for Video Content

  1. Ask the user for the video file path
  2. Extract a frame to understand the content:
   ffmpeg -i video.mp4 -ss 00:00:03 -frames:v 1 frame.jpg -y
  1. Read the frame and write a caption with 4–5 relevant hashtags
  2. Upload the video: POST /media
  3. Get account IDs: GET /accounts
  4. Create the post with the media id and url from the upload
  5. Confirm status: GET /posts/<post_id>

Tips

  • Post to multiple platforms in one request by including multiple account IDs
  • Use "type": "draft" when the user wants to review content before it goes live
  • Stagger scheduled posts throughout the day for better reach
  • Keep hashtags to 4–5 per post
  • Always confirm account IDs from GET /accounts before every session
  • Check the results array after posting for per-platform success or failure details
  • If a post fails on one platform but succeeds on others, the overall status will be failed — check individual results

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.06%
按下载量换算681

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills