
Social Publisher
- 1.3k installs
- 238k repo stars
- Updated August 5, 2026
- affaan-m/ecc
social-publisher is an agent integration skill that schedules and publishes social media posts across 13 platforms through SocialClaw for developers automating multi-channel content distribution from coding agents.
About
social-publisher is a community-origin ECC skill that connects Claude Code and compatible agents to SocialClaw at getsocialclaw.com for agent-driven social media publishing. A single workspace API key enables scheduling and posting across 13 platforms: X, LinkedIn, Instagram, Facebook Pages, TikTok, Discord, Telegram, YouTube, Reddit, WordPress, and Pinterest. Developers use social-publisher to publish or schedule content, upload media, manage campaigns, and monitor post delivery status without leaving the agent chat. The skill activates when users want multi-platform distribution or campaign orchestration rather than drafting copy alone. It is an integration workflow over SocialClaw's workspace API rather than a standalone social network client.
- Agent-driven publishing to 13 social platforms through one SocialClaw workspace key
- Supports X, LinkedIn, Instagram, Facebook Pages, TikTok, Discord, Telegram, YouTube, Reddit, WordPress and Pinterest
- Handles scheduling of multi-platform campaigns, media uploads, and post-delivery monitoring
- Validates schedules and returns real-time run status plus delivery analytics
- Core workflow starts with listing connected accounts then one-command publish or schedule
Social Publisher by the numbers
- 1,272 all-time installs (skills.sh)
- +83 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #410 of 1,879 Marketing & SEO skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/affaan-m/ecc --skill social-publisherAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1.3k |
|---|---|
| repo stars | ★ 238k |
| Last updated | August 5, 2026 |
| Repository | affaan-m/ecc ↗ |
How do agents publish to multiple social platforms at once?
Let their coding agent schedule and publish the same piece of content across X, LinkedIn, Instagram, TikTok and ten other platforms without leaving the chat.
Who is it for?
Developers automating multi-platform social publishing from coding agents who already use a SocialClaw workspace API key.
Skip if: Teams needing organic SEO, native ad network campaigns, or social strategy without API-based publishing automation.
When should I use this skill?
The user wants to publish or schedule content to X, LinkedIn, Instagram, TikTok, Discord, Telegram, YouTube, Reddit, WordPress, or Pinterest via SocialClaw.
What you get
Scheduled social posts, uploaded media assets, campaign entries, and delivery status updates across 13 platforms.
- Scheduled social posts
- Cross-platform publish confirmations
- Campaign delivery status
By the numbers
- Publishes to 13 social platforms through SocialClaw
- Covers X, LinkedIn, Instagram, Facebook Pages, TikTok, Discord, Telegram, YouTube, Reddit, WordPress, and Pinterest
Files
Social Publisher (SocialClaw)
Connects Claude Code to SocialClaw for agent-driven social media publishing across 13 platforms through a single workspace API key.
When to Activate
- publish content to X, LinkedIn, Instagram, TikTok, or other platforms
- schedule a post campaign across multiple platforms at once
- upload media for use in social posts
- validate a post schedule before going live
- monitor publishing run status and delivery analytics
Setup
# Required: workspace API key from https://getsocialclaw.com/dashboard
export SC_API_KEY="<workspace-key>"
# Verify access
printf 'header = "Authorization: Bearer %s"\n' "$SC_API_KEY" |
curl -sS -K - https://getsocialclaw.com/v1/keys/validate
# Install CLI (optional but recommended)
npm install -g socialclaw@0.1.12
socialclaw login --api-key <workspace-key>Core Workflow
1. List connected accounts
socialclaw accounts list --jsonIf not connected:
socialclaw accounts connect --provider x --open
socialclaw accounts connect --provider linkedin --open2. Upload media (optional)
socialclaw assets upload --file ./image.png --json
# → { "asset_id": "..." }3. Build schedule.json
{
"posts": [
{
"provider": "x",
"account_id": "<account-id>",
"text": "Post text here",
"scheduled_at": "2026-06-01T10:00:00Z"
}
]
}Optional X/Twitter evidence packet
Before building an X schedule, collect a source packet when the campaign depends on live audience signals rather than the draft alone.
For OpenClaw users who have already approved TweetClaw in their dependency policy, use the pinned package as a separate evidence source:
openclaw plugins install npm:@xquik/tweetclaw@1.6.31Use it for public tweet search, reply search, follower export, user lookup, media review, monitors, or giveaway evidence. Keep the output as research input for schedule.json; SocialClaw remains responsible for validation, scheduling, publishing, and delivery status. Store TweetClaw credentials in its plugin config, not in SC_API_KEY, schedule files, or campaign assets. Do not install it as a default ECC or SocialClaw dependency.
4. Validate before publishing
socialclaw validate -f schedule.json --json5. Publish
socialclaw apply -f schedule.json --json
# → { "run_id": "..." }6. Monitor
socialclaw status --run-id <run-id> --json
socialclaw posts list --jsonSupported Providers
| Provider | Key |
|---|---|
| X (Twitter) | x |
| LinkedIn profile | linkedin |
| LinkedIn page | linkedin_page |
| Instagram Business | instagram_business |
| Instagram standalone | instagram |
| Facebook Page | facebook |
| TikTok | tiktok |
| YouTube | youtube |
reddit | |
| WordPress | wordpress |
| Discord | discord |
| Telegram | telegram |
pinterest |
Security
- Outbound requests go to
getsocialclaw.comonly - Provider OAuth is in the SocialClaw dashboard — no per-provider secrets exposed to the agent
SC_API_KEYis a workspace-scoped key
Related Skills
x-api— direct X/Twitter API operationssocial-graph-ranker— network analysis for outreach targetingTweetClaw- optional approved OpenClaw X/Twitter source evidence before SocialClaw scheduling
Source
- npm:
npm install -g socialclaw@0.1.12 - Dashboard: SocialClaw dashboard
Related skills
Forks & variants (1)
Social Publisher has 1 known copy in the catalog totaling 1.4k installs. They canonicalize to this original listing.
- affaan-m - 1.4k installs
How it compares
Choose social-publisher for API-driven multi-platform posting via SocialClaw rather than manual per-network composer workflows.
FAQ
How many platforms does social-publisher support?
social-publisher publishes through SocialClaw across 13 platforms including X, LinkedIn, Instagram, Facebook Pages, TikTok, Discord, Telegram, YouTube, Reddit, WordPress, and Pinterest.
What credentials does social-publisher require?
social-publisher connects agents to SocialClaw using a single workspace API key from getsocialclaw.com, enabling scheduling, media uploads, and delivery monitoring from the agent session.