SocialClaw
SocialClaw is a workspace-scoped social publishing service at
https://getsocialclaw.com
.
This skill is an instruction layer for the hosted SocialClaw service. It teaches Claude Code how to:
- get or use a workspace API key
- call the SocialClaw HTTP API
- understand provider and account-type caveats
- optionally use the separate CLI if it is already installed
This skill can work without the CLI. The CLI is only an optional client for the same hosted service.
Use this skill when the user wants to:
- connect or disconnect social accounts in a SocialClaw workspace
- upload media and get SocialClaw-hosted delivery URLs
- validate, preview, apply, or inspect scheduled posts and campaigns
- inspect connected account capabilities, publish settings, actions, jobs, health, or analytics
Do not use this skill for editing the SocialClaw codebase itself. This is for operating a deployed SocialClaw workspace.
Defaults
- Base URL:
https://getsocialclaw.com
- Auth: workspace API key in
Authorization: Bearer <key>
- Preferred interface: CLI when installed
- Fallback interface: SocialClaw HTTP API
Runtime requirements
- Required env:
- Hosted base URL:
https://getsocialclaw.com
- Optional CLI: or if already installed
- Workspace status: an active trial or paid plan is required for CLI/API execution through the workspace key
Optional CLI
SocialClaw has a separate npm CLI package named
.
Prefer it when it is already installed or the user wants command-line examples. The CLI is a client for the hosted SocialClaw service. It can:
- store a workspace API key locally
- start account connection flows
- upload assets
- validate, preview, and apply schedules
- inspect posts, runs, analytics, usage, and workspace health
- install the packaged Claude Code command with
socialclaw install --claude
If the user explicitly wants the CLI and it is not installed yet:
bash
npm install -g socialclaw
Quick start
If the user does not have a workspace API key yet:
bash
open https://getsocialclaw.com/dashboard
Tell them:
- sign in with Google
- open the API key section
- create or copy their workspace API key
Set:
bash
export SC_API_KEY="<workspace-key>"
If the CLI is installed, log in with it:
bash
socialclaw login --api-key <workspace-key>
Otherwise validate the key over HTTP:
bash
curl -sS \
-H "Authorization: Bearer $SC_API_KEY" \
"https://getsocialclaw.com/v1/keys/validate"
If execution fails with
,
,
,
, or
, direct the user to:
https://getsocialclaw.com/pricing
https://getsocialclaw.com/dashboard
Operating rules
- Start by confirming the user has a SocialClaw workspace API key.
- If the user does not have a key yet, send them to
https://getsocialclaw.com/dashboard
to sign in with Google and create one.
- A workspace API key alone is not sufficient for execution. If billing-related errors appear, route the user to pricing or dashboard billing instead of retrying commands.
- Never ask the user for provider app secrets. End users connect accounts inside SocialClaw.
- Prefer explicit provider and account-type language:
- Facebook Pages, not Facebook personal profiles
- Instagram Business linked to a Facebook Page
- Instagram standalone professional accounts
- LinkedIn profile and LinkedIn page are separate providers
- Pinterest is board-centric; inspect capabilities and actions before assuming sections, catalogs, or advanced surfaces
- If a provider workflow is not supported, say so directly instead of inventing a workaround.
- Treat Pinterest product, collection, and idea surfaces as capability-gated or beta unless account capabilities or actions explicitly advertise them.
- Avoid echoing full API keys back into chat.
Main workflow
- Confirm the user has a workspace API key.
- If needed, direct the user to the dashboard to sign in with Google and create a key.
- Validate workspace access.
- List accounts or start a connection flow.
- Inspect capabilities and settings for the target account.
- Upload media if needed.
- Validate or preview the post or campaign.
- Apply it.
- Inspect posts, runs, analytics, or retry or reconcile if needed.
Provider-specific publishing notes
TikTok photo posts
TikTok photo/gallery posts are stricter than video posts. Before scheduling or applying a TikTok photo post:
- Use image-only assets for the post; do not mix images and videos.
- Keep each gallery within TikTok's connected-account capability limit, typically up to 35 images.
- Normalize photos before upload to TikTok-safe dimensions. Prefer 1080x1920 JPEGs for vertical photo slides, or another standard TikTok-compatible aspect/size. Oversized or unusual dimensions can pass SocialClaw validation and initial TikTok acceptance, then fail later with
picture_size_check_failed
.
- For photo galleries, set
settings.autoAddMusic: true
when the user wants TikTok to choose recommended music. TikTok's Content Posting API does not expose selecting a specific sound.
- Avoid setting a visible /title unless the user explicitly wants one. For TikTok posts, put user-facing copy in ; otherwise dashboards or previews may show an unwanted title field.
- After posting a TikTok photo gallery, do not assume means it is visible. Reconcile the post after a short delay:
bash
socialclaw posts reconcile --post-id <post-id> --json
Treat
providerStatus: published
with
reconciliationStatus: confirmed
as the stronger success signal. If reconciliation returns
picture_size_check_failed
, regenerate resized/padded images, upload those corrected assets, and reschedule.
CLI reference
Authentication
bash
socialclaw login --api-key <workspace-key>
Install the packaged command file:
bash
socialclaw install --claude
Accounts
bash
socialclaw accounts list --json
socialclaw accounts capabilities --account-id <account-id> --json
socialclaw accounts settings --account-id <account-id> --json
socialclaw accounts actions --account-id <account-id> --json
socialclaw accounts connect --provider <provider> --open
socialclaw accounts connect --provider telegram --bot-token <token> --chat-id @yourchannel --json
socialclaw accounts connect --provider discord --webhook-url <url> --json
socialclaw accounts status --connection-id <id> --json
socialclaw accounts disconnect --account-id <id> --json
Media
bash
socialclaw assets upload --file ./image.png --json
socialclaw assets delete --asset-id <id> --retention-days 7 --json
Schedules and campaigns
bash
socialclaw validate -f schedule.json --json
socialclaw campaigns preview -f schedule.json --json
socialclaw apply -f schedule.json --json
socialclaw campaigns inspect --run-id <id> --json
socialclaw campaigns clone --run-id <id> --output cloned.json --json
socialclaw publish-draft --run-id <id> --start-at 2026-03-25T10:00:00.000Z --json
Posts and runs
bash
socialclaw posts list --limit 20 --json
socialclaw posts get --post-id <id> --json
socialclaw posts attempts --post-id <id> --json
socialclaw posts reconcile --post-id <id> --json
socialclaw runs inspect --run-id <id> --json
socialclaw status --run-id <id> --json
socialclaw retry --post-id <id> --json
socialclaw cancel --post-id <id> --json
socialclaw view --run-id <id> --format terminal
Analytics and health
bash
socialclaw analytics post --post-id <id> --json
socialclaw analytics account --account-id <id> --json
socialclaw analytics run --run-id <id> --json
socialclaw analytics refresh --post-id <id> --json
socialclaw workspace health --json
socialclaw connections health --json
socialclaw jobs list --limit 20 --json
socialclaw usage --json
HTTP fallback
If the CLI is not available, use the HTTP API directly.
Common header:
bash
-H "Authorization: Bearer $SC_API_KEY"
Validate key
bash
curl -sS \
-H "Authorization: Bearer $SC_API_KEY" \
"https://getsocialclaw.com/v1/keys/validate"
List accounts
bash
curl -sS \
-H "Authorization: Bearer $SC_API_KEY" \
"https://getsocialclaw.com/v1/accounts"
Start account connection
bash
curl -sS -X POST \
-H "Authorization: Bearer $SC_API_KEY" \
-H "Content-Type: application/json" \
-d '{"provider":"youtube"}' \
"https://getsocialclaw.com/v1/connections/start"
Then poll:
bash
curl -sS \
-H "Authorization: Bearer $SC_API_KEY" \
"https://getsocialclaw.com/v1/connections/<connection-id>"
Connect Telegram manually
bash
curl -sS -X POST \
-H "Authorization: Bearer $SC_API_KEY" \
-H "Content-Type: application/json" \
-d '{"provider":"telegram","botToken":"<bot-token>","chatId":"@yourchannel"}' \
"https://getsocialclaw.com/v1/connections/start"
Connect Discord manually
bash
curl -sS -X POST \
-H "Authorization: Bearer $SC_API_KEY" \
-H "Content-Type: application/json" \
-d '{"provider":"discord","webhookUrl":"<discord-webhook-url>"}' \
"https://getsocialclaw.com/v1/connections/start"
Upload media
bash
curl -sS -X POST \
-H "Authorization: Bearer $SC_API_KEY" \
-F "file=@./image.png" \
"https://getsocialclaw.com/v1/assets/upload"
Apply a schedule
bash
curl -sS -X POST \
-H "Authorization: Bearer $SC_API_KEY" \
-H "Content-Type: application/json" \
-d @schedule.json \
"https://getsocialclaw.com/v1/posts/apply"
Inspect posts
bash
curl -sS \
-H "Authorization: Bearer $SC_API_KEY" \
"https://getsocialclaw.com/v1/posts?limit=20"
curl -sS \
-H "Authorization: Bearer $SC_API_KEY" \
"https://getsocialclaw.com/v1/posts/<post-id>"
Provider notes
Facebook — Facebook Pages only (
). Personal profiles are not publish targets.
Instagram Business (
) — professional/business accounts linked to a Facebook Page only. Requires media.
Instagram standalone (
) — standalone professional accounts through Instagram Login. Separate from
. Requires media.
X — text posts, up to four images or one video, reply steps in campaign flows.
LinkedIn profile (
) — text and native image or video. Up to twenty images or one video per post.
LinkedIn page (
) — separate from member profiles. Same media limits.
Pinterest (
) — board-centric. Standard pins, video pins, multi-image pins. Use discovery actions to inspect boards, sections, and catalogs. Product, collection, and idea surfaces are capability-gated or beta.
TikTok (
) — one video or one photo gallery per post. Photo galleries support up to 35 images,
, and
; selecting a specific TikTok song or sound is not exposed by TikTok's API.
settings.tiktokPostMode: "draft"
uploads to the account's TikTok drafts (inbox) instead of publishing; the creator finishes the post in the TikTok app (needs the
scope — older connections must reconnect once).
Telegram (
) — bot-based posting. Connected manually with a bot token and
or
, not via OAuth. One optional image or video per post.
Discord (
) — channel posting via webhook URL. Connected manually, not via OAuth. One optional image or video per post.
YouTube (
) — channel video uploads. One video per post. Community posts and Shorts-specific flows are not supported.
Reddit (
) — self posts and link posts. Requires a
setting. Native media upload is not supported.
WordPress (
) — WordPress.com or Jetpack-connected sites. SocialClaw uploads remote media before publishing.
Legacy Meta (
) — older workspaces only. Prefer explicit
and
for new workspaces.
Read next
- For full HTTP API recipes and schedule formats, read references/workflows.md.
- For the optional CLI and command examples, read references/cli.md.
- For provider and account-type caveats, read references/providers.md.