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

boring-social-publisher无聊的社交出版商

Agent Skill

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

总安装

4,237

周安装

182

GitHub Stars

公开资料未说明

下载量

1,485
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:boring-social-publisher(无聊的社交出版商)
来源仓库:https://github.com/snoopyrain/boring-social-publisher
安装命令:
openclaw skills install boring-social-publisher
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install boring-social-publisher

简介

使用 Boring 工具实现多平台社交媒体内容一键发布。

  • 适用于希望扩大传播范围又不愿逐个平台操作的场景。
  • 返回各平台发布状态与错误提示便于后续跟进处理。
  • 需提前设置好目标平台列表与对应认证信息。boring-social-publisher 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议首次使用时先用草稿模式预览实际呈现效果。

SKILL.md

name
boring-social-publisher
description
Publish social media posts to multiple platforms at once using Boring. Use when the user says 'post to social media', 'publish everywhere', 'cross-post', 'share on all platforms', 'publish to Facebook and Instagram', or wants to distribute content across Facebook, Instagram, Threads, YouTube, TikTok, or X simultaneously.
version
1.0.0
metadata
openclaw
emoji
🚀
homepage
https://boring-doc.aiagent-me.com/getting-started/mcp.html
requires
config

Boring Social Publisher

Publish content to multiple social media platforms with a single message. Powered by Boring — a unified social media publishing API.

Security & Data Handling

  • MCP link is a credential: Your MCP Server URL (https://boring.aiagent-me.com/mcp/t/xxxxx...) contains an embedded authentication token. Treat it like a password — do not share it publicly. You can regenerate it anytime in Settings.
  • Media uploads: When you provide local files or URLs, they are uploaded to Boring's Google Cloud Storage (boring.aiagent-me.com) to make them accessible for publishing to social platforms. This is required because social media APIs need publicly accessible media URLs.
  • Data flow: Your post content and media are sent from Boring's server to the social media platform APIs (Facebook, Instagram, Threads, YouTube, TikTok, X) on your behalf via your connected OAuth tokens.
  • No local credentials: This skill does not require any local API keys or environment variables. All authentication is embedded in the MCP link.
  • Privacy: Uploaded media is stored in Google Cloud Storage for publishing purposes. Boring does not use your content for any other purpose.

Prerequisites

  1. Sign up at boring.aiagent-me.com with Google
  2. Connect your social accounts — link Facebook Pages, Instagram Business, Threads, YouTube, TikTok, or X accounts via OAuth
  3. Get your MCP link: Go to Settings → copy your MCP Server URL (contains your auth token — treat it like a password)
  4. Add to Claude: Paste the MCP link into Claude settings as a Connector — no install, no API key needed

Workflow

When the user wants to publish content across platforms, follow these steps:

Step 1: Get Available Accounts

Call boring_list_accounts to see which platforms the user has connected. Show them a summary:

  • Account name and platform
  • Connection status

Step 2: Confirm Content and Platforms

Ask the user:

  • What content to post (text, images, videos)
  • Which platforms to target (or "all")
  • Whether to publish now or schedule for later

Step 3: Prepare Media (if needed)

If the user provides local files or URLs:

  • Local files: Use boring_upload_file with file_path to upload and get a public URL
  • External URLs: Use boring_upload_from_url to re-host the media on Boring's cloud storage
  • Google Drive links: Pass directly — Boring handles Google Drive URLs automatically

Step 4: Adapt Content Per Platform

Automatically adjust content for each platform's requirements:

PlatformText LimitMedia RequiredNotes
FacebookNo strict limitNoSupports text, photo, album (2-10), video
Instagram2,200 charsYesPhoto, carousel (2-10), Reels (video 9:16)
Threads500 charsNoText, photo, carousel (2-20), video
YouTubeTitle: 100, Desc: 5,000Yes (video)Text format: `Title\

\ Description` | | TikTok | 2,200 chars | Yes (video or photos) | Video or photo carousel (up to 35) | | X | 280 chars | No | Text, up to 4 images or 1 video |

Important adaptations:

  • Truncate text to fit platform limits
  • Skip Instagram if no media is available (media is mandatory)
  • For YouTube: format text as `Video Title\

\ Description text here`

  • For Threads: split long content into a thread if over 500 chars using boring_publish_thread

Step 5: Publish

For each selected platform, call boring_publish_post with:

  • account_id: from the account list
  • platform: the platform name
  • text: adapted content
  • media_urls: array of media URLs (if any)
  • scheduled_at: ISO 8601 datetime if scheduling (e.g., 2025-12-25T10:00:00Z)

Step 6: Report Results

After publishing, summarize:

  • Which platforms succeeded with post IDs
  • Which platforms failed and why
  • If scheduled, show the scheduled time and post IDs

Scheduling

To schedule posts for later:

  • Add scheduled_at parameter with ISO 8601 format: 2025-12-25T10:00:00Z
  • Use boring_list_scheduled_posts to view queued posts
  • Use boring_cancel_scheduled_post to cancel before publish time

Error Handling

ErrorSolution
InvalidApiKeyMCP link may be invalid — regenerate it at boring.aiagent-me.com Settings
TokenExpiredAsk user to reconnect the account at boring.aiagent-me.com
MediaRequiredInstagram/TikTok require media — skip or ask user for an image
TextTooLongTruncate or split content for the platform
RateLimitExceededWait and retry (check retry_after field)
AccountDisabledAccount was disconnected — reconnect at dashboard

Example Usage

User: "Post 'Just launched our new product!' with this image to all my accounts"

Agent workflow:

  1. boring_list_accounts → finds Facebook, Instagram, Threads accounts
  2. boring_upload_from_url (if image is a URL) → gets hosted URL
  3. boring_publish_post to Facebook with text + image
  4. boring_publish_post to Instagram with text + image
  5. boring_publish_post to Threads with text + image
  6. Report: "Published to 3 platforms successfully"

Documentation

Full API docs: boring-doc.aiagent-me.com

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.56%
按下载量换算1,122

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills