Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
Skill for the Meta Business CLI. Complete WhatsApp, Instagram, Facebook Pages, and Messenger automation via the Graph API. Supports messaging, media, templates, analytics, webhooks, and systemd service management. --- name: meta-business description: "Skill for the Meta Business CLI. Complete WhatsApp, Instagram, Facebook Pages, and Messenger automation via the Graph API. Supports messaging, media, templates, analytics, webhooks, and systemd service management." version: 1.2.0 author: adolago tags: - whatsapp - instagram - facebook - messenger - meta - cli - automation triggers: - whatsapp - instagram - facebook - messenger -
clawhub skill install skills:adolago:meta-businessOverall rank
#62
Adoption
No public adoption signal
Trust
Unknown
Freshness
Feb 25, 2026
Freshness
Last checked Feb 25, 2026
Best For
meta-business is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, CLAWHUB, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Skill for the Meta Business CLI. Complete WhatsApp, Instagram, Facebook Pages, and Messenger automation via the Graph API. Supports messaging, media, templates, analytics, webhooks, and systemd service management. --- name: meta-business description: "Skill for the Meta Business CLI. Complete WhatsApp, Instagram, Facebook Pages, and Messenger automation via the Graph API. Supports messaging, media, templates, analytics, webhooks, and systemd service management." version: 1.2.0 author: adolago tags: - whatsapp - instagram - facebook - messenger - meta - cli - automation triggers: - whatsapp - instagram - facebook - messenger - Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Openclaw
Artifacts
0
Benchmarks
0
Last release
Unpublished
Install & run
clawhub skill install skills:adolago:meta-businessSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Openclaw
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
# 1. Configure app credentials meta config set app.id YOUR_APP_ID meta config set app.secret YOUR_APP_SECRET # 2. Authenticate (OAuth PKCE, opens browser) meta auth login # 3. Configure WhatsApp (from API Setup page) meta config set whatsapp.phoneNumberId YOUR_PHONE_NUMBER_ID meta config set whatsapp.businessAccountId YOUR_WABA_ID # 4. Verify everything works meta doctor
bash
meta auth login # OAuth PKCE flow (opens browser) meta auth login --token YOUR_ACCESS_TOKEN # Use existing token meta auth login --scopes "whatsapp_business_messaging,instagram_basic,pages_show_list" meta auth status # Show token validity and scopes meta auth logout # Remove stored credentials
bash
meta config set app.id YOUR_APP_ID # App ID (numeric) meta config set app.secret YOUR_APP_SECRET # App secret meta config set whatsapp.phoneNumberId ID # WhatsApp phone number ID meta config set whatsapp.businessAccountId ID # WhatsApp business account ID meta config set instagram.accountId ID # Instagram account ID meta config set pages.pageId ID # Facebook Page ID meta config set webhook.forwardUrl URL # Forward inbound messages to URL meta config get <key> # Get a config value meta config list # Show all config values
bash
# Text meta wa send "+1234567890" --text "Hello" --json # Markdown (converts to WhatsApp formatting) meta wa send "+1234567890" --text "**bold** and _italic_" --markdown --json # Chunked (splits long text into multiple messages) meta wa send "+1234567890" --text "very long message..." --chunk --json # Image meta wa send "+1234567890" --image "https://example.com/photo.jpg" --caption "Look" --json # Video meta wa send "+1234567890" --video "https://example.com/video.mp4" --caption "Watch" --json # Document meta wa send "+1234567890" --document "https://example.com/file.pdf" --json # Local file (auto-uploads) meta wa send "+1234567890" --document ./report.pdf --caption "Q4 report" --json # Audio meta wa send "+1234567890" --audio "https://example.com/note.ogg" --json # Voice note (renders as playable voice note, requires OGG/Opus) meta wa send "+1234567890" --audio "./recording.ogg" --voice --json # Template meta wa send "+1234567890" --template "hello_world" --template-lang en_US --json # Mark as read meta wa read WAMID --json
bash
meta wa template list --json # List all templates meta wa template get TEMPLATE_NAME --json # Get template details meta wa template delete TEMPLATE_NAME --json # Delete template
bash
meta wa media upload ./photo.jpg --json # Upload media meta wa media url MEDIA_ID --json # Get media URL meta wa media download MEDIA_ID ./output.jpg # Download media
Editorial read
Docs source
CLAWHUB
Editorial quality
ready
Skill for the Meta Business CLI. Complete WhatsApp, Instagram, Facebook Pages, and Messenger automation via the Graph API. Supports messaging, media, templates, analytics, webhooks, and systemd service management. --- name: meta-business description: "Skill for the Meta Business CLI. Complete WhatsApp, Instagram, Facebook Pages, and Messenger automation via the Graph API. Supports messaging, media, templates, analytics, webhooks, and systemd service management." version: 1.2.0 author: adolago tags: - whatsapp - instagram - facebook - messenger - meta - cli - automation triggers: - whatsapp - instagram - facebook - messenger -
name: meta-business description: "Skill for the Meta Business CLI. Complete WhatsApp, Instagram, Facebook Pages, and Messenger automation via the Graph API. Supports messaging, media, templates, analytics, webhooks, and systemd service management." version: 1.2.0 author: adolago tags:
Use meta for WhatsApp, Instagram, Facebook Pages, and Messenger automation via the Graph API.
# 1. Configure app credentials
meta config set app.id YOUR_APP_ID
meta config set app.secret YOUR_APP_SECRET
# 2. Authenticate (OAuth PKCE, opens browser)
meta auth login
# 3. Configure WhatsApp (from API Setup page)
meta config set whatsapp.phoneNumberId YOUR_PHONE_NUMBER_ID
meta config set whatsapp.businessAccountId YOUR_WABA_ID
# 4. Verify everything works
meta doctor
Or use --token YOUR_TOKEN with any command to skip OAuth (e.g. System User tokens).
meta auth login # OAuth PKCE flow (opens browser)
meta auth login --token YOUR_ACCESS_TOKEN # Use existing token
meta auth login --scopes "whatsapp_business_messaging,instagram_basic,pages_show_list"
meta auth status # Show token validity and scopes
meta auth logout # Remove stored credentials
meta config set app.id YOUR_APP_ID # App ID (numeric)
meta config set app.secret YOUR_APP_SECRET # App secret
meta config set whatsapp.phoneNumberId ID # WhatsApp phone number ID
meta config set whatsapp.businessAccountId ID # WhatsApp business account ID
meta config set instagram.accountId ID # Instagram account ID
meta config set pages.pageId ID # Facebook Page ID
meta config set webhook.forwardUrl URL # Forward inbound messages to URL
meta config get <key> # Get a config value
meta config list # Show all config values
Config stored at ~/.meta-cli/config.json.
# Text
meta wa send "+1234567890" --text "Hello" --json
# Markdown (converts to WhatsApp formatting)
meta wa send "+1234567890" --text "**bold** and _italic_" --markdown --json
# Chunked (splits long text into multiple messages)
meta wa send "+1234567890" --text "very long message..." --chunk --json
# Image
meta wa send "+1234567890" --image "https://example.com/photo.jpg" --caption "Look" --json
# Video
meta wa send "+1234567890" --video "https://example.com/video.mp4" --caption "Watch" --json
# Document
meta wa send "+1234567890" --document "https://example.com/file.pdf" --json
# Local file (auto-uploads)
meta wa send "+1234567890" --document ./report.pdf --caption "Q4 report" --json
# Audio
meta wa send "+1234567890" --audio "https://example.com/note.ogg" --json
# Voice note (renders as playable voice note, requires OGG/Opus)
meta wa send "+1234567890" --audio "./recording.ogg" --voice --json
# Template
meta wa send "+1234567890" --template "hello_world" --template-lang en_US --json
# Mark as read
meta wa read WAMID --json
| Type | Max Size | |------|----------| | Image | 5 MB | | Video | 16 MB | | Document | 100 MB |
meta wa template list --json # List all templates
meta wa template get TEMPLATE_NAME --json # Get template details
meta wa template delete TEMPLATE_NAME --json # Delete template
meta wa media upload ./photo.jpg --json # Upload media
meta wa media url MEDIA_ID --json # Get media URL
meta wa media download MEDIA_ID ./output.jpg # Download media
meta wa analytics --days 30 --granularity DAY --json
meta wa phone list --json # List numbers
meta wa phone get --json # Get active number details
meta wa phone select PHONE_NUMBER_ID # Select active number
meta wa allowlist list # List allowed numbers
meta wa allowlist add "+1234567890" # Add number
meta wa allowlist remove "+1234567890" # Remove number
When the allowlist is non-empty, meta wa send only delivers to listed numbers.
# Publish image
meta ig publish --image "https://example.com/photo.jpg" --caption "My post" --json
# Publish video
meta ig publish --video "https://example.com/video.mp4" --caption "Watch this" --json
# Publish Reel
meta ig publish --video "https://example.com/reel.mp4" --reel --caption "New reel" --json
# Account insights
meta ig insights --period day --days 30 --json
# Media insights
meta ig insights --media-id MEDIA_ID --json
# Comments
meta ig comments list MEDIA_ID --json # List comments
meta ig comments reply COMMENT_ID "Thanks!" --json # Reply
meta ig comments hide COMMENT_ID --json # Hide
meta ig comments delete COMMENT_ID --json # Delete
Instagram publish requires a public URL for images/videos (not local files).
meta fb post --message "Hello from the CLI" --json # Create post
meta fb post --message "Check this" --link "https://example.com" --json # Link post
meta fb list --limit 10 --json # List posts
meta fb insights --period day --days 30 --json # View insights
meta messenger send PSID --text "Hello" --json # Send text
meta messenger send PSID --image "https://example.com/photo.jpg" --json # Send image
meta messenger send PSID --text "Update" --type MESSAGE_TAG --tag HUMAN_AGENT --json # Outside 24h window
meta messenger receive --json # List conversations
meta messenger receive --conversation-id CONV_ID --json # View conversation
Messenger messaging outside the 24h window requires a message tag.
# Start listener
meta webhook listen --port 3000 --verify-token TOKEN --app-secret SECRET
# Test verification locally
meta webhook verify --verify-token TOKEN --json
# Subscribe to events
meta webhook subscribe \
--object whatsapp_business_account \
--fields messages \
--callback-url "https://example.com/webhook" --json
Set webhook.forwardUrl in config to POST inbound messages to an external service.
The webhook auto-sends read receipts and acknowledges reactions for inbound messages.
meta service install # Install systemd user service
meta service start # Start the webhook service
meta service stop # Stop the service
meta service restart # Restart the service
meta service status # Show service status
meta service logs # Show service logs
meta service uninstall # Remove systemd service
# Bash
meta completion >> ~/.bashrc
# Zsh (add to .zshrc)
meta completion >> ~/.zshrc
meta doctor --json
Checks config, credentials, token validity, Graph API connectivity, permissions, and surface-specific asset access. Run before first use.
| Flag | Description |
|------|-------------|
| --json | Structured output for scripting and agent use |
| --verbose | Print debug logs to stderr |
| --token TOKEN | Override stored credentials |
| --api-version v22.0 | Pin a specific Graph API version |
--json for structured output when automating.Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-adolago-meta-business/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-adolago-meta-business/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-skills-adolago-meta-business/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-adolago-meta-business/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-adolago-meta-business/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-adolago-meta-business/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-adolago-meta-business/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-adolago-meta-business/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-skills-adolago-meta-business/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "CLAWHUB",
"generatedAt": "2026-04-17T02:52:34.625Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Openclaw",
"href": "https://github.com/openclaw/skills/tree/main/skills/adolago/meta-business",
"sourceUrl": "https://github.com/openclaw/skills/tree/main/skills/adolago/meta-business",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/clawhub-skills-adolago-meta-business/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-adolago-meta-business/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/clawhub-skills-adolago-meta-business/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-skills-adolago-meta-business/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to meta-business and adjacent AI workflows.