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

supapost-skill超邮技能

Agent Skill

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

总安装

2,446

周安装

104

GitHub Stars

公开资料未说明

下载量

857
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install supapost-skill

简介

用于 AI 驱动的内容创作与跨平台社交媒体发布。

  • 支持 TikTok、Instagram、YouTube 与 X 的帖子调度。
  • 可生成图像、视频与 AI 影响者管理功能。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 需绑定各平台 API 密钥并遵守社区发布规范。
  • supapost-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
supapost
version
1.0.1
description
Generate AI images and video, build TikTok slideshows, manage AI influencers, and schedule posts to TikTok / Instagram / YouTube / X through the Supapost MCP. Use whenever the user asks to create social content, run image-to-video, lock a character identity, or queue posts across connected accounts.
license
MIT-0
homepage
https://supapost.so/developers/openclaw
repository
https://github.com/supapost-dev/skills
documentation
https://supapost.so/developers/mcp
keywords
metadata
openclaw
requires
env
bins
[]
primaryEnv
SUPAPOST_API_KEY
mcp
transport
streamable-http
url
https://mcp.supapost.so
auth
oauth

Supapost

Supapost is an end-to-end studio for AI-native content creators. This skill teaches your agent how to drive Supapost via its MCP server.

Installing this skill

Use the vercel-labs/skills CLI to drop the SKILL.md into your coding agent's skills folder (Claude Code, Cursor, OpenCode, OpenClaw, etc.):

npx skills add supapost-dev/skills

Or download the raw file from https://supapost.so/skill.md.

Connecting the MCP

Installing the skill only teaches the agent *how* to use Supapost. To actually call tools, connect the Supapost MCP. Create an API key at https://supapost.so/settings/developer (keys start with sp_), then pick the install for your client.

Claude Code (CLI):

claude mcp add --transport http supapost \
  https://mcp.supapost.so \
  --header "Authorization: Bearer sp_..."

Cursor / Windsurf / VS Code / any MCP client — add to ~/.cursor/mcp.json (or .mcp.json in the project root):

{
  "mcpServers": {
    "supapost": {
      "url": "https://mcp.supapost.so",
      "headers": { "Authorization": "Bearer sp_..." }
    }
  }
}

Verify the connection. After registering, call list_models once. A valid key returns a JSON list. A 401 Invalid API key means the key is wrong, expired, or missing the sp_ prefix — regenerate it at https://supapost.so/settings/developer.

Local stdio (MCP developers only): if you need to run the server locally against a custom SUPAPOST_API_URL, use the stdio package: claude mcp add supapost --env SUPAPOST_API_KEY=sp_... -- npx -y @supapost/mcp.

Tools at a glance

Reads: list_models, list_influencers, list_products, list_projects, get_project, list_scheduled_posts, list_assets, list_social_accounts, list_stores.

Writes: generate_image, generate_video, generate_slides, create_influencer, update_influencer, delete_influencer, upsert_project, delete_project, schedule_post, update_scheduled_post, delete_scheduled_post, publish_tiktok, delete_asset.

Core concepts

  • Influencer = identity anchor. An influencer has a first-generation image that locks the face. Pass influencer_id to generate_image / generate_video to keep the character consistent across scenes.
  • Projects are containers — a slide deck, an influencer workspace, or a video. Use upsert_project to create or update; generate_slides creates a slides project in one call.
  • Assets are generated or uploaded media. Generation tools are async — results appear as assets when the job completes.
  • Scheduled posts are queued with scheduled_at as an ISO 8601 future datetime. Delivery is handled by Cloudflare Queues.

Canonical workflows

1. Build a TikTok deck from a prompt

  1. generate_slides with { prompt: "<topic + angle + tone>" }.
  2. The response contains a project with slides. Review with the user.
  3. Optional: upsert_project to tweak metadata (name, status) only.
Don't use upsert_project to author slide content from scratch. The editor stores slides as positioned layers with full typography and positioning metadata. generate_slides produces that shape correctly. Hand-rolling JSON through upsert_project will save but the editor may render blank slides.

2. Create a consistent AI influencer

  1. generate_image with the character description. Pick the best output.
  2. create_influencer with that image URL in images[]. The first image becomes the identity anchor.
  3. For every new scene, call generate_image with influencer_id set. Do not restate the character in the prompt — describe scene, pose, outfit, lighting only.

3. Animate a still into video

  1. Find or generate a source image URL (from list_assets or generate_image).
  2. generate_video with { prompt, reference_images: [url], model: "kling-2.5-turbo-pro", duration: 5 }.
  3. Keep prompts under ~40 words: camera move → subject action → environment.

4. Schedule a TikTok slideshow for next Tuesday 9am

  1. list_social_accounts → find the TikTok account id.
  2. schedule_post with platform: "tiktok", social_account_id, scheduled_at (ISO 8601, future), and either a project_id (existing slide deck) or image_urls[].

5. Publish to TikTok drafts right now

publish_tiktok with { account_id, image_urls, title }. This creates a TikTok draft the user reviews in the TikTok app before going live.

Rules

  • Never paste the user's SUPAPOST_API_KEY into logs, files, prompts, or tool args. It lives only in the MCP env.
  • Always list before writing when the user references something by name ("my Emma influencer", "the summer sale project") — call list_influencers / list_projects / list_stores to resolve the id first.
  • Always confirm destructive actions (delete_*) with the user before calling.
  • Scheduled posts: verify scheduled_at is in the future and in ISO 8601 with timezone (e.g. 2026-05-01T09:00:00Z).
  • Images must be URLs, not base64. If the user pastes a local file, upload it first through the web app and use the resulting URL.
  • Generation is async. generate_image / generate_video return a job id. Surface that to the user rather than pretending the asset is ready.
  • Models: prefer the team default (leave model unset) unless the user asks for a specific one. Use list_models to show options.

Errors

The API returns { message: "..." } on failure with an HTTP status. Common cases:

  • 401 Invalid API key — key is wrong, expired, or missing the sp_ prefix.
  • 403 No team found — key isn't linked to a team; user needs to recreate it.
  • 404 Not found — bad id, or the resource belongs to a different team.
  • 400 — validation error; surface the message verbatim.

Docs

  • Product: https://supapost.so
  • Developer portal: https://developers.supapost.so
  • API keys: https://supapost.so/settings/developer

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.09%
按下载量换算644

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills