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

simplified-social-media简化的社交媒体

Agent Skill

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

总安装

20,392

周安装

867

GitHub Stars

公开资料未说明

下载量

7,144
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install simplified-social-media

简介

simplified-social-media 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词快速定位候选结果时使用。

  • 主要功能是通过 AI 管理多个社交媒体平台,包括发布、安排和分析内容。
  • 通过 openclaw skills install 命令从 ClawHub 安装,需确认权限范围。
  • 建议在使用前检查维护状态及是否会触发外部平台 API 调用。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
simplified-social
description
Manage your entire social media from AI — post, schedule, and analyze across Facebook, Instagram, TikTok, YouTube, LinkedIn, Pinterest, Threads, Bluesky and Google Business
version
1.2.2
homepage
https://simplified.com
triggers
license
MIT
metadata
openclaw
emoji
📱
requires
env

Simplified Social Media

Schedule, queue, and draft social media posts, and retrieve analytics across 10 platforms using Simplified.com.

MCP Server

This skill requires a connection to the Simplified Social Media MCP server at https://mcp.simplified.com/social-media/mcp.

All tools (getSocialMediaAccounts, createSocialMediaPost, getSocialMediaAnalyticsRange, etc.) are provided by this remote MCP server — they are not built-in tools. You must configure the MCP server before using any functionality.

MCP server config (add to .mcp.json or equivalent):

{
  "mcpServers": {
    "simplified-social-media": {
      "transport": "http",
      "url": "https://mcp.simplified.com/social-media/mcp",
      "headers": {
        "Authorization": "Api-Key ${SIMPLIFIED_API_KEY}"
      }
    }
  }
}
For Claude Code specifically, use "type": "http" instead of "transport": "http".

IMPORTANT: Before Any Operation

Always check if SIMPLIFIED_API_KEY is configured before attempting any tool calls.

If the user tries to use any social media feature and the API key is missing or returns a 401/Unauthorized error:

  1. Stop immediately — do not retry the failed call
  2. Inform the user with this exact message:

> Simplified Social Media requires an API key to work. > > Please follow these steps: > 1. Sign up or log in at simplified.com > 2. Go to Settings → API Keys and copy your API key > 3. Add to your shell config (~/.zshrc or ~/.bashrc): > ``bash > export SIMPLIFIED_API_KEY="your-api-key" > ` > 4. Reload your shell: source ~/.zshrc` > 5. Restart Claude Code to pick up the new variable

  1. Do not proceed with the original request until the user confirms the key is set

Setup

  1. Sign up at simplified.com
  2. Connect your social media accounts in the Simplified dashboard
  3. Get your API key from Settings → API Keys
  4. Set environment variable:
   export SIMPLIFIED_API_KEY="your-api-key"
  1. Configure the MCP server — see the MCP Server section above for the config block
  2. Restart your AI tool to load the MCP server

Core Workflow

Always follow this sequence: Discover → Select → Compose → Publish

Step 1: Discover Accounts

Call getSocialMediaAccounts to list connected accounts. Optionally filter by network.

getSocialMediaAccounts({ network: "instagram" })

Returns { accounts: [...] } where each account has id (integer) and name and type (see type values below).

If getSocialMediaAccounts returns an empty list, stop and inform the user with this message:

No social media accounts connected yet. You're one step away from managing your entire social media presence without leaving your editor. Connect your accounts in the Simplified dashboard and you'll be able to: - 📅 Schedule and publish posts to Facebook, Instagram, TikTok, YouTube, LinkedIn, Pinterest, Threads, Bluesky and Google Business — with a single command - 📊 Pull analytics, track reach, engagement and follower growth across all platforms - 🤖 Let your AI agent run full social media campaigns autonomously Takes 2 minutes to connect. No code required.

Step 2: Select Target Accounts

Pick one or more account_ids from the results. You can post to multiple accounts in a single call.

Step 3: Compose the Post

Build the post payload:

  • message (required) — the post text, max 5000 chars
  • account_ids (required) — array of target account IDs
  • action (required) — schedule, add_to_queue, or draft
  • date — required for schedule, format: YYYY-MM-DD HH:MM
  • media — array of public URLs (images/videos), max 10
  • additional — platform-specific settings (see below)

Step 4: Publish

Call createSocialMediaPost with the composed payload.

Choosing the Right Analytics Tool

User asks about...Tool to call
Trends over time, charts, metric growth/declinegetSocialMediaAnalyticsRange
Specific posts, best/worst performing contentgetSocialMediaAnalyticsPosts
Account overview, KPIs, period summarygetSocialMediaAnalyticsAggregated
Demographics, follower origins, age/gender breakdowngetSocialMediaAnalyticsAudience
"Show me analytics" with no further contextCall getSocialMediaAnalyticsAggregated + getSocialMediaAnalyticsRange with key metrics — this gives the best general overview

Tool Reference

getSocialMediaAccounts

ParameterTypeRequiredDescription
networkstringNoFilter by platform (see networks)

Networks (filter parameter): facebook, instagram, linkedin, tiktok, youtube, pinterest, threads, google, bluesky, tiktokBusiness

Returns { accounts: [...] }. Each account object:

FieldTypeDescription
idintegerAccount ID — use for all analytics calls; convert to string for account_ids in createSocialMediaPost
namestringAccount display name
typestringAccount type — see values below

type values and their meaning:

type valuePlatformNotes
Facebook pageFacebook
Instagram business / Instagram profileInstagram
Youtube accountYouTube
TikTok profileTikTok Personaluse tiktok metrics set
TikTok profile (business)TikTok Businessuse tiktokBusiness metrics set
LinkedIn companyLinkedInuse LinkedIn Company metrics set
LinkedIn profileLinkedInuse LinkedIn Personal metrics set
Pinterest boardPinterest
Threads accountThreads
Bluesky accountBluesky
Google ProfileGoogle Business

createSocialMediaPost

ParameterTypeRequiredDescription
messagestringYesPost text (max 5000 chars)
account_idsstring[]YesTarget account IDs
actionstringYesschedule, add_to_queue, or draft
datestringNoSchedule datetime: YYYY-MM-DD HH:MM
mediastring[]NoPublic media URLs (max 10)
additionalobjectNoPlatform-specific settings

getSocialMediaAnalyticsRange

Retrieves time-series data for selected metrics within a date range.

ParameterTypeRequiredDescription
account_idintegerYesSocial media account ID (from getSocialMediaAccounts)
metricsstring[]YesList of metrics to retrieve (see references/ANALYTICS_GUIDE.md)
date_fromstringYesStart date: YYYY-MM-DD
date_tostringYesEnd date: YYYY-MM-DD
tzstringNoTimezone, e.g. UTC, Europe/Warsaw (default: UTC)

Returns a structured object:

  • data — array of { date, metrics: AnalyticsMetric[] } — per-day time-series
  • baseLine{ [metricId]: AnalyticsMetric } — aggregated totals for the full period, each with value (current) and prevValue (equivalent previous period)
  • additional{ [metricId]: AnalyticsMetric[] } — extra metrics computed over different windows (e.g., 28-day reach)

Unknown metrics are silently ignored. See references/ANALYTICS_GUIDE.md for the full metric list, default metrics per network, and response examples.

getSocialMediaAnalyticsPosts

Retrieves analytics for individual posts within a date range.

ParameterTypeRequiredDescription
account_idintegerYesSocial media account ID
date_fromstringYesStart date: YYYY-MM-DD
date_tostringYesEnd date: YYYY-MM-DD
pageintegerNoPage number (default: 1, minimum: 1)
per_pageintegerNoPosts per page (default: 10, max: 100)

Returns paginated post list with per-post metrics (likes, impressions, etc.). Fields include all_posts_count, current_page, pages_count, and posts array with id, message, publishedDate, postUrl, postType, media, and metrics.

Pagination: To fetch all posts, use per_page: 100 to minimize API calls, start with page: 1 and keep incrementing until current_page >= pages_count. Stop when there are no more pages or posts is empty.

getSocialMediaAnalyticsAggregated

Retrieves aggregated analytics (totals and averages) for an account within a date range.

ParameterTypeRequiredDescription
account_idintegerYesSocial media account ID
date_fromstringYesStart date: YYYY-MM-DD
date_tostringYesEnd date: YYYY-MM-DD

Returns data (daily metrics array) and baseLine with four aggregated KPIs: impressions_aggregated, engagement_aggregated, followers_aggregated, publishing_aggregated. Each KPI includes value (current period) and prevValue (previous period for comparison).

getSocialMediaAnalyticsAudience

Retrieves audience demographics and follower data for an account.

ParameterTypeRequiredDescription
account_idintegerYesSocial media account ID
date_fromstringYesStart date: YYYY-MM-DD
date_tostringYesEnd date: YYYY-MM-DD
tzstringNoTimezone, e.g. UTC, Europe/Warsaw

Returns audience breakdown: audience_page_fans_gender_age (age/gender split), audience_page_fans_country (followers by country code), audience_page_fans_city (followers by city). Not all fields are available for every network.

Action Types

ActionWhen to Usedate Required?
schedulePost at a specific date/timeYes
add_to_queueAdd to the account's auto-schedule queueNo
draftSave for later editing in the Simplified dashboardNo

Default: When the user doesn't specify timing, use add_to_queue. When they give a date/time, use schedule. When they say "save" or "draft", use draft.

Platform Settings Quick Reference

All platform settings go inside the additional object, grouped by platform name. Bold = required. For full details see references/PLATFORM_GUIDE.md.

PlatformRequired additionalsOptional additionals
FacebookpostType
InstagrampostType, channelpostReel (reel only)
TikTokpostType, channel, postpostPhoto (photo only)
TikTok BizpostType, postpostPhoto (photo only)
YouTubepostType, post
LinkedInaudience
Pinterestpost
Threadschannel
Googlepost
Bluesky

Key enum values:

PlatformFieldValues
FacebookpostType.valuepost\*, reel, story
InstagrampostType.valuepost\*, reel, story
Instagramchannel.valuedirect\*, reminder
TikTokpostType.valuevideo\*, photo
TikTokchannel.valuedirect\*, reminder
TikTokpost.privacyStatusPUBLIC_TO_EVERYONE\*, MUTUAL_FOLLOW_FRIENDS, FOLLOWER_OF_CREATOR, SELF_ONLY
YouTubepostType.valuevideo\*, short
YouTubepost.privacyStatus"", public, private, unlisted
LinkedInaudience.valuePUBLIC\*, CONNECTIONS, LOGGED_IN
Threadschannel.valuedirect\*, reminder
Googlepost.topicTypeSTANDARD\*, EVENT, OFFER

\* = default

Example Workflows

Simple Queue Post

1. getSocialMediaAccounts({ network: "instagram" })
2. createSocialMediaPost({
     message: "Check out our new feature! 🚀",
     account_ids: ["acc_123"],
     action: "add_to_queue",
     media: ["https://cdn.example.com/image.jpg"],
     additional: {
       instagram: {
         postType: { value: "post" },
         channel:  { value: "direct" }
       }
     }
   })

Scheduled YouTube Short

1. getSocialMediaAccounts({ network: "youtube" })
2. createSocialMediaPost({
     message: "Quick tip: how to use our API",
     account_ids: ["acc_456"],
     action: "schedule",
     date: "2026-03-10 14:00",
     media: ["https://cdn.example.com/video.mp4"],
     additional: {
       youtube: {
         postType: { value: "short" },
         post: {
           title: "API Quick Tip",
           privacyStatus: "public",
           selfDeclaredMadeForKids: "no"
         }
       }
     }
   })

Multi-Platform Campaign

1. getSocialMediaAccounts()
2. createSocialMediaPost({
     message: "Big announcement! We just launched v2.0 🎉",
     account_ids: ["ig_acc", "fb_acc", "li_acc"],
     action: "schedule",
     date: "2026-03-15 09:00",
     media: ["https://cdn.example.com/launch.jpg"],
     additional: {
       instagram: { postType: { value: "post" }, channel: { value: "direct" } },
       facebook:  { postType: { value: "post" } },
       linkedin:  { audience: { value: "PUBLIC" } }
     }
   })

Analytics: Time-Series Metrics

1. getSocialMediaAccounts({ network: "instagram" })
2. getSocialMediaAnalyticsRange({
     account_id: 123,
     metrics: ["reach", "follower_count", "total_interactions", "saves"],
     date_from: "2026-02-01",
     date_to: "2026-02-28",
     tz: "Europe/Warsaw"
   })

Analytics: Post Performance Report

1. getSocialMediaAccounts()
2. getSocialMediaAnalyticsPosts({
     account_id: 456,
     date_from: "2026-02-01",
     date_to: "2026-02-28",
     page: 1,
     per_page: 100
   })
// Increment page until current_page >= pages_count

Analytics: Account Overview (KPIs + Audience)

1. getSocialMediaAccounts({ network: "facebook" })
2. getSocialMediaAnalyticsAggregated({
     account_id: 789,
     date_from: "2026-02-01",
     date_to: "2026-02-28"
   })
3. getSocialMediaAnalyticsAudience({
     account_id: 789,
     date_from: "2026-02-01",
     date_to: "2026-02-28"
   })

Gotchas

  • Analytics account_id is an integer, not a string — use the numeric id from getSocialMediaAccounts
  • Analytics date format is YYYY-MM-DD (no time component, unlike post scheduling)
  • Unknown metrics are silently ignored by getSocialMediaAnalyticsRange — check references/ANALYTICS_GUIDE.md for per-network availability
  • Audience data availability variesgetSocialMediaAnalyticsAudience may return partial or empty data depending on the network
  • Date format must be YYYY-MM-DD HH:MM (24-hour, no seconds, no timezone — uses account timezone)
  • Media URLs must be publicly accessible — pre-signed or CDN URLs work, localhost does not
  • date is required when action is schedule — omit it for add_to_queue and draft
  • Platform character limits — always check before composing; see references/PLATFORM_GUIDE.md for limits per platform
  • Instagram always requires channel — include channel: { value: "direct" } for every Instagram post
  • TikTok postType values are video and photo (not image)
  • TikTok channel values are direct and reminder (not business)
  • LinkedIn audience value is LOGGED_IN (not LOGGED_IN_MEMBERS)
  • Google topicType only has STANDARD, EVENT, OFFER (no PRODUCT)
  • Instagram story — message must be empty (""), max 1 photo
  • Reels and Shorts require video — Instagram reel, Facebook reel, YouTube short all require a video file in media; images are not allowed (photos.max: 0)
  • YouTube always requires post.title — always include additional.youtube.post with a title field for every YouTube video or short

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.39%
按下载量换算6,172

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills