6.3k★by mrgoodb
facebook – OpenClaw Skill
facebook is an OpenClaw Skills integration for writing workflows. Manage Facebook Pages, posts, and insights via Graph API. Post content, read comments, and analyze engagement.
6.3k stars9.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing
Skill Snapshot
| name | |
| description | Manage Facebook Pages, posts, and insights via Graph API. Post content, read comments, and analyze engagement. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/facebook |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/facebook |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
269 BSKILL.md
1.9 KBSKILL.md
name: facebook description: Manage Facebook Pages, posts, and insights via Graph API. Post content, read comments, and analyze engagement. metadata: {"clawdbot":{"emoji":"👤","requires":{"env":["FACEBOOK_ACCESS_TOKEN","FACEBOOK_PAGE_ID"]}}}
Social media platform (Pages API).
Environment
export FACEBOOK_ACCESS_TOKEN="xxxxxxxxxx" # Page Access Token
export FACEBOOK_PAGE_ID="xxxxxxxxxx"
Get Page Info
curl "https://graph.facebook.com/v18.0/$FACEBOOK_PAGE_ID?fields=name,followers_count,fan_count" \
-H "Authorization: Bearer $FACEBOOK_ACCESS_TOKEN"
Get Page Posts
curl "https://graph.facebook.com/v18.0/$FACEBOOK_PAGE_ID/posts?fields=message,created_time,shares,likes.summary(true)" \
-H "Authorization: Bearer $FACEBOOK_ACCESS_TOKEN"
Create Post
curl -X POST "https://graph.facebook.com/v18.0/$FACEBOOK_PAGE_ID/feed" \
-H "Authorization: Bearer $FACEBOOK_ACCESS_TOKEN" \
-d "message=Hello from automation!"
Post with Image
curl -X POST "https://graph.facebook.com/v18.0/$FACEBOOK_PAGE_ID/photos" \
-H "Authorization: Bearer $FACEBOOK_ACCESS_TOKEN" \
-F "url=https://example.com/image.jpg" \
-F "caption=Check this out!"
Get Post Comments
curl "https://graph.facebook.com/v18.0/{post_id}/comments" \
-H "Authorization: Bearer $FACEBOOK_ACCESS_TOKEN"
Get Page Insights
curl "https://graph.facebook.com/v18.0/$FACEBOOK_PAGE_ID/insights?metric=page_impressions,page_engaged_users&period=day" \
-H "Authorization: Bearer $FACEBOOK_ACCESS_TOKEN"
Reply to Comment
curl -X POST "https://graph.facebook.com/v18.0/{comment_id}/comments" \
-H "Authorization: Bearer $FACEBOOK_ACCESS_TOKEN" \
-d "message=Thanks for your comment!"
Links
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install facebook?
Run openclaw add @mrgoodb/facebook in your terminal. This installs facebook into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/facebook. Review commits and README documentation before installing.
