Install
openclaw skills install @daydreamnationtechlabs/clawpostPost to X (Twitter), LinkedIn, Facebook, and TikTok via Claw Post API. Search for Facebook groups, join them, and post to them. Use when the user wants to publish social content, discover relevant groups, or manage Facebook group membership.
openclaw skills install @daydreamnationtechlabs/clawpostSocial posting infrastructure for AI agents. A paired browser extension publishes from the user's real browser session — no API keys to the social platforms needed.
POST /v1/jobs/tweet endpoint.| Capability | Endpoint | Platforms |
|---|---|---|
| Post to feed or group | POST /v1/jobs/tweet | X, LinkedIn, Facebook, TikTok |
| Upload media for posts | POST /v1/media/upload | X, LinkedIn, Facebook, TikTok |
| Search for groups | POST /v1/groups/search | |
| Join a group | POST /v1/facebook/groups/join | |
| Check group membership | POST /v1/facebook/groups/status | |
| Poll any job result | GET /v1/jobs/:id | All |
All endpoints require the clawpost-api-key header.
Before any action works, the human must:
CLAWPOST_API_KEY environment variable in the agent (copy the key from the Dashboard — it is not embedded in this skill file)Extension scope. The Chrome extension is designed to activate on supported social sites and when communicating with the Claw Post API. Verify permissions on the Chrome Web Store listing and review the Terms of Service before installing.
If the agent gets EXTENSION_NOT_PAIRED or not_logged_in, direct the human to complete these steps.
All requests use the clawpost-api-key header:
clawpost-api-key: YOUR_CLAWPOST_API_KEY
The value above is a placeholder. Set the real secret via the CLAWPOST_API_KEY environment variable (or your agent’s secret store); do not paste live keys into this file or commit them to version control.
https://api.clawpost.net
This is the stable, official Claw Post API endpoint. Full documentation: https://clawpost.net/api-docs
Create a post job, then poll for completion.
POST https://api.clawpost.net/v1/jobs/tweet
Content-Type: application/json
clawpost-api-key: YOUR_CLAWPOST_API_KEY
X (Twitter):
{ "text": "Hello world!", "platform": "x" }
LinkedIn:
{ "text": "Hello LinkedIn!", "platform": "linkedin" }
Facebook feed:
{ "text": "Hello Facebook!", "platform": "facebook" }
Facebook group (use groupUrl from search results, or a known groupId):
{
"text": "Hello group!",
"platform": "facebook",
"platformPayload": { "groupUrl": "https://www.facebook.com/groups/123456789/" }
}
TikTok (video + caption):
{ "text": "Caption text", "platform": "tiktok", "mediaPaths": ["<url from upload>"] }
Optional fields:
platform – "x" (default), "linkedin", "facebook", or "tiktok"mediaPaths – array of media URLs (upload first via media endpoint below)idempotencyKey – unique string to prevent duplicate postsplatformPayload – Facebook group targeting: { "groupId": "..." } or { "groupUrl": "..." }GET https://api.clawpost.net/v1/jobs/:id
Status progresses: queued → processing → succeeded | failed.
postUrl.error and errorCode.Upload media before posting. The returned URL goes into the mediaPaths array.
POST https://api.clawpost.net/v1/media/upload
clawpost-api-key: YOUR_CLAWPOST_API_KEY
Content-Type: multipart/form-data
Body: file=<media file>
Response:
{ "url": "https://storage.googleapis.com/..." }
Then include in a post:
{ "text": "Check this out!", "platform": "x", "mediaPaths": ["<url from upload>"] }
Discover relevant groups to join and post in. Returns ranked results with names, member counts, activity hints, and join status.
POST https://api.clawpost.net/v1/groups/search
Content-Type: application/json
clawpost-api-key: YOUR_CLAWPOST_API_KEY
{
"platform": "facebook",
"query": "ai automation",
"filters": { "minMembers": 1000, "privacy": "any" },
"limit": 20
}
platform: must be "facebook" (only supported platform for now).query: search keywords (required).filters.minMembers: minimum member count (optional).filters.privacy: "public", "private", or "any" (optional).limit: max results, up to 50 (optional, default 20).Response:
{ "jobId": "<id>" }
Poll GET https://api.clawpost.net/v1/jobs/:id until status is succeeded.
Results are in details.groupSearch.results[]. Each result:
| Field | Type | Description |
|---|---|---|
name | string | Group title (best-effort; may say "Group" if title not extractable) |
url | string | Canonical group URL — use this for joining or posting |
platformId | string? | Numeric Facebook group ID (when available) |
slug | string? | URL slug (when available, e.g. "aiautomationagency") |
privacy | string? | "public", "private", or "unknown" |
memberCount | number? | Approximate member count (when visible on search page) |
activityHint | string? | Raw activity text, e.g. "10 posts a day" |
joinStatus | string? | "joined", "requested", "not_member", or "unknown" |
score | number | 0–1 relevance score (higher = better match) |
reasons | string[] | Why this group scored well (e.g. "keyword match", "large member base", "active", "public") |
signals | object? | Raw numeric signals: keywordHit, memberCount, activityPerDay |
Reliability notes:
url is always present and reliable. Use it as the primary identifier.name, memberCount, privacy, activityHint, and joinStatus are best-effort; they depend on what the search page exposes.score and reasons are computed by the extension from available signals.Join a group so you can post to it. Use the url from search results (extract the group ID or pass the full URL).
POST https://api.clawpost.net/v1/facebook/groups/join
Content-Type: application/json
clawpost-api-key: YOUR_CLAWPOST_API_KEY
{ "groupId": "123456789" }
Response: a job object. Poll GET /v1/jobs/:id for completion.
On success, check details.buttonState:
"joined" – user is now a member; you can post."requested" – group requires approval; wait and check status later."not_member" – join may not have worked; retry or inspect.POST https://api.clawpost.net/v1/facebook/groups/status
Content-Type: application/json
clawpost-api-key: YOUR_CLAWPOST_API_KEY
{ "groupId": "123456789" }
Same polling pattern. details.buttonState tells you the current membership state.
POST /v1/groups/search with a relevant query.score, memberCount >= 1000, privacy: "public", and activityHint showing regular posts.joinStatus in results:
"joined" → skip to step 5."not_member" or "unknown" → proceed to step 4.POST /v1/facebook/groups/join with the group ID (extract from url or use platformId). Poll until details.buttonState is "joined" or "requested".POST /v1/jobs/tweet with platform: "facebook" and platformPayload: { "groupUrl": "<url from search>" }.Important: Some groups require admin approval before you can post. If details.buttonState is "requested", wait and re-check status later before attempting to post.
CLAWPOST_API_KEY is tied to a single account and can be rotated from the Dashboard at any time.| Code / errorCode | Cause | Action |
|---|---|---|
| 401 | Invalid or missing API key | Check clawpost-api-key header |
503 / EXTENSION_NOT_PAIRED | No paired extension | User must install and pair the extension at clawpost.net/dashboard |
not_logged_in | User not logged in to the platform | User must log in to the platform in their browser |
no_x_tab / no_platform_tab | No browser tab for the platform | Retry; extension will try to open one |
content_script_unavailable | Extension could not reach the tab | Ask user to refresh the platform tab, then retry |
selector_not_found | Platform UI changed or element not found | Retry after a short delay |
group_not_approved | User not approved to post in this group | Join the group first or wait for approval; do not retry immediately |
challenge_required | Platform security check (captcha/checkpoint) | Ask user to complete the challenge in their browser, then retry |
On any failure, poll GET /v1/jobs/:id and read error and errorCode for details.
Full API docs: https://clawpost.net/api-docs