Help us improve
Share bugs, ideas, or general feedback.
Schedules and publishes social media posts across 13 platforms (X, LinkedIn, Instagram, TikTok, etc.) via SocialClaw. Manages campaigns, uploads media, and monitors delivery status.
npx claudepluginhub aaione/everything-claude-code-zhHow this skill is triggered — by the user, by Claude, or both
Slash command
/everything-claude-code:social-publisherThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
通过单一工作区 API 密钥将 Claude Code 连接到 [SocialClaw](https://getsocialclaw.com),实现跨 13 个平台的智能体驱动社交媒体发布。
Publishes and schedules social media posts across 13 platforms (X, LinkedIn, Instagram, TikTok, etc.) via SocialClaw. Manages campaigns, uploads media, validates schedules, and monitors delivery status.
Agent-first social media publishing skill — schedule and publish posts across 13 platforms (X, LinkedIn, Instagram, Facebook, TikTok, Discord, Telegram, YouTube, Reddit, WordPress, Pinterest) via a single workspace API key.
Schedules and publishes social media content across X, LinkedIn, Instagram, Facebook, TikTok, Discord, Telegram, YouTube, Reddit, WordPress, and Pinterest via SocialClaw's API or optional CLI.
Share bugs, ideas, or general feedback.
通过单一工作区 API 密钥将 Claude Code 连接到 SocialClaw,实现跨 13 个平台的智能体驱动社交媒体发布。
# 必需:从 https://getsocialclaw.com/dashboard 获取工作区 API 密钥
export SC_API_KEY="<workspace-key>"
# 验证访问
curl -sS -H "Authorization: Bearer $SC_API_KEY" https://getsocialclaw.com/v1/keys/validate
# 安装 CLI(可选但推荐)
npm install -g socialclaw@0.1.12
socialclaw login --api-key <workspace-key>
socialclaw accounts list --json
如果未连接:
socialclaw accounts connect --provider x --open
socialclaw accounts connect --provider linkedin --open
socialclaw assets upload --file ./image.png --json
# → { "asset_id": "..." }
{
"posts": [
{
"provider": "x",
"account_id": "<account-id>",
"text": "帖子文本",
"scheduled_at": "2026-06-01T10:00:00Z"
}
]
}
socialclaw validate -f schedule.json --json
socialclaw apply -f schedule.json --json
# → { "run_id": "..." }
socialclaw status --run-id <run-id> --json
socialclaw posts list --json
| 平台 | 键名 |
|---|---|
| X(Twitter) | x |
| LinkedIn 个人主页 | linkedin |
| LinkedIn 公司页面 | linkedin_page |
| Instagram 商业版 | instagram_business |
| Instagram 独立版 | instagram |
| Facebook 页面 | facebook |
| TikTok | tiktok |
| YouTube | youtube |
reddit | |
| WordPress | wordpress |
| Discord | discord |
| Telegram | telegram |
pinterest |
getsocialclaw.comSC_API_KEY 是工作区范围的密钥x-api — 直接的 X/Twitter API 操作social-graph-ranker — 用于外联定位的网络分析npm install -g socialclaw@0.1.12