LaunchKit · 2026
Back to Skills

facebook

OpenClaw skill for Facebook Graph API workflows focused on Pages posting,.

5
3.1k downloads
by @codedao12

Setup & Installation

openclaw skills install @codedao12/facebook

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install facebook

Version History

v1.0.1Feb 2, 2026 - Version note by skill developer:

Version 1.0.1 - Expanded documentation with six new reference files covering Graph API overview, Page posting, comments moderation, permissions/tokens, webhooks, and HTTP request examples. - Updated guidance to focus on direct HTTPS requests for Facebook Pages: posting, comment management, and Page operations. - Clarified required inputs (App ID/Secret, Page ID, token strategy). - Added detailed security and operational guardrails. - Clearly defined recommended use cases and limitations.

What This Skill Does

Handles Facebook Graph API workflows for Pages: publishing posts, managing comments, and moderating Page content via direct HTTPS requests. Covers token management, permissions, webhooks, and rate limit handling. Designed for production use without relying on SDKs.

Using direct HTTP requests instead of SDKs gives full control over request payloads, versioning, and retry logic without SDK abstraction overhead.

When to use it

  • Publishing scheduled posts to a Facebook Page
  • Moderating and replying to comments on Page content
  • Setting up webhooks to receive real-time Page activity
  • Rotating and managing Page access tokens safely
  • Auditing permissions before submitting for App Review

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: post a message to my Facebook Page and hide any spam comments

AGENT
  1. 1Exchange user token for a Page access token using the App ID and Secret
  2. 2POST to /v19.0/{page-id}/feed with the message payload
  3. 3Subscribe to the Page's comment webhook to receive new comment events
  4. 4On webhook trigger, evaluate comment content for spam signals
  5. 5Send a POST to /v19.0/{comment-id} with is_hidden=true for flagged comments
OUTPUT

Post published to the Page and spam comments hidden automatically via webhook-driven moderation

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

Facebook Developer accountFacebook App with App ID and App SecretTarget Facebook Page with admin accessPermissions approved via Facebook App Review (e.g. pages_manage_posts, pages_read_engagement)Page access token obtained through the Graph API token flow