social-media-post

social-media-post is a skill for Claude Code from peturgeorgievv-factory/postfast-mcp. It costs 62 tokens per session (2,803 once invoked), scanned A, original, MIT.

A PostFast tool for creating, scheduling, and managing social-media posts across connected accounts. PostFast is a service that sends posts to social platforms.

In plain words
What is it for?
Use it to publish or schedule posts on platforms such as Facebook, Instagram, X, TikTok, LinkedIn, YouTube, Threads, Pinterest, Telegram, and Google Business Profile.
Why use it?
It centralizes publishing tasks and checks account connections and media limits before posts are scheduled.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the postfast plugin — 2 skills, 2 MCP servers shipped together

Good fit Use it to publish or schedule posts on platforms such as Facebook, Instagram, X, TikTok, LinkedIn, YouTube, Threads, Pinterest, Telegram, and Google Business Profile.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/peturgeorgievv-factory/postfast-mcp/social-media-post
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add peturgeorgievv-factory/postfast-mcp --skill social-media-post
Clone the repo
git clone --depth 1 https://github.com/peturgeorgievv-factory/postfast-mcp

Made for: Claude Code.

Or install postfast, the plugin that ships this one along with the rest of its 2 skills, 2 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for social-media-post

README.md
[![agentmods](https://agentmods.dev/badge/skills/peturgeorgievv-factory/postfast-mcp/social-media-post/github.svg)](https://agentmods.dev/skills/peturgeorgievv-factory/postfast-mcp/social-media-post)
Your own site
<a href="https://agentmods.dev/skills/peturgeorgievv-factory/postfast-mcp/social-media-post"><img src="https://agentmods.dev/badge/skills/peturgeorgievv-factory/postfast-mcp/social-media-post/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for social-media-post

Your own site · 80×15
<a href="https://agentmods.dev/skills/peturgeorgievv-factory/postfast-mcp/social-media-post"><img src="https://agentmods.dev/badge/skills/peturgeorgievv-factory/postfast-mcp/social-media-post.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,803 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00062 $0.02803
Opus 5 $0.00031 $0.01401
Sonnet 5 $0.00012 $0.00561
Haiku 4.5 $0.00006 $0.00280

Measured 12d ago against content hash 46818ef5b6e5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

social-media-post scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/social-media-post/SKILL.md · 127 lines

How it starts

The opening of the file, as written. The whole thing — 127 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Social Media Post via PostFast

You have access to PostFast MCP tools for social media scheduling and management.

Setup Check

If any PostFast tool call fails with an authentication/401 error, tell the user:

  1. Go to https://app.postfa.st/dashboard, click API in the sidebar, and generate a key
  2. Set the POSTFAST_API_KEY environment variable with the key

Posting Workflow

  1. List accounts — Call list_accounts to see connected social media accounts. Each account has an id, platform, platformUsername, displayName, and a connectionStatus (CONNECTED or DISABLED) with an optional disabledReason. If connectionStatus is DISABLED, the account won't publish until the user reconnects it — warn the user and don't schedule to it.

  2. Prepare media (if needed) — If the user has images or videos to attach:

    • Use upload_media with the local file path — it handles getting a signed URL, uploading, and returning a key and type (IMAGE or VIDEO)
    • Supported formats: JPEG, PNG, GIF, WebP (images), MP4, WebM, MOV (video)
    • Size limits: 10MB images, 250MB video, 60MB documents (PDF/DOC/DOCX/PPT/PPTX)
  3. Create posts — Call create_posts with:

    • socialMediaId: account ID from step 1
    • content: the post text/caption
    • scheduledAt: ISO 8601 datetime (required unless status is DRAFT)
    • mediaItems: array of {key, type, sortOrder} from uploaded media
    • status: SCHEDULED (default) or DRAFT
    • firstComment: optional first comment text, posted automatically after publishing (supported on X, Instagram, Facebook, YouTube, Threads, and TikTok — TikTok: max 1,200 chars, requires a Business API connection)
    • controls: platform-specific settings (see below)
    • You can batch up to 15 posts in a single call — great for content calendars
    • Don't schedule to a DISABLED account — the API rejects it with HTTP 400 socialMediaDisconnected. Saving as DRAFT is still allowed. Check connectionStatus from step 1 first.

Read the full file on GitHub · 127 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 127 lines · 62 tokens per session scan A 46818ef5b6e5

Subscribe to this mod's changes

social-media-post is a skill published in the GitHub repository peturgeorgievv-factory/postfast-mcp (5 stars, last pushed 19d ago), licensed MIT. It adds 62 tokens to every session and 2,803 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

gingiris-twitter-agent-ops

Twitter/X Agent Operations SOP v2 — Rebuilt from real dual-account operations. Real data: • CN account: grew from 1,150 → 3,679 followers (14 months), 1 tweet/day, OAuth1 direct post • EN account: Buffer API • Real incidents: cron silent-failed for 2 weeks unnoticed, analytics data off by 17×, thread performance worse…

Gingiris-1031/gingiris-skills · 360 tokens

zernio

Schedule posts, manage inbox, broadcasts, sequences, and automations across 14 platforms from the CLI.

zernio-dev/zernio-cli · 24 tokens

blotato

Social media publishing and scheduling platform. Publish and schedule posts across Instagram, LinkedIn, Twitter/X, TikTok, YouTube, and more. Upload media and monitor post status.

renatoasse/opensquad · 40 tokens

content-calendar

Plan, schedule, and track content across channels — newsletters, social media, blog posts, and videos. Manages pipeline stages, publishing cadence, and repurposing opportunities. For solopreneurs and creators who want a system, not a spreadsheet.

theagentledger/agent-skills · 54 tokens

Social Media Manager

AI-native social media management system. Tracks posting schedules across platforms (Twitter/X, LinkedIn, Instagram, Threads, Reddit, TikTok), manages content queues, tracks engagement metrics, suggests optimal posting times, handles repurposing workflows, and runs weekly performance reviews. Designed for solopreneurs…

theagentledger/agent-skills · 91 tokens

opik-diagnose

Surface the Opik traces worth a developer's attention, ranked by signal — Diagnostics issues first, then errors, failed tool calls, latency, regressions, and low online-eval scores. With the Opik MCP connected it lists the project's agentinsightsissue entities, offers to turn Diagnostics on when the project has it…

comet-ml/opik-mcp · 187 tokens