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
Crawler Summary
Meta CMO (Life Agent) --- name: meta-cmo description: Meta (Facebook/Instagram) CMO operator skill for the CMO role: pull Meta Ads read-only performance, read Facebook Page + Instagram Business profile/post/comment/insight data via Meta Graph API, and generate content drafts/creative briefs for FB/IG. Includes competitor discovery, hashtag research, audience demographics, best-time-to-post analysis, content ranking, and automated CMO brie Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Freshness
Last checked 2/24/2026
Best For
meta-cmo-skill 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, GITHUB OPENCLEW, runtime-metrics, public facts pack
Meta CMO (Life Agent) --- name: meta-cmo description: Meta (Facebook/Instagram) CMO operator skill for the CMO role: pull Meta Ads read-only performance, read Facebook Page + Instagram Business profile/post/comment/insight data via Meta Graph API, and generate content drafts/creative briefs for FB/IG. Includes competitor discovery, hashtag research, audience demographics, best-time-to-post analysis, content ranking, and automated CMO brie
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 24, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 24, 2026
Vendor
King Mom
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/KING-MOM/meta-cmo-skill.gitSetup 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.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
King Mom
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
json
{
"access_token": "EAAB...",
"api_version": "v23.0",
"page_id": "123...",
"ig_user_id": "1784..."
}json
{
"apiKey": "sk-..."
}json
{
"access_token": "EAAB...",
"ad_account_id": "act_1234567890"
}json
{
"apiKey": "AIza..."
}json
{
"botToken": "...",
"defaultChatId": "123456789"
}bash
# daily-full (canonical): campaign + adset + ad levels
node {baseDir}/scripts/meta-cmo.mjs ads.insights --level campaign --datePreset last_7d
node {baseDir}/scripts/meta-cmo.mjs ads.insights --level adset --datePreset last_7d
node {baseDir}/scripts/meta-cmo.mjs ads.insights --level ad --datePreset last_7d
# quick-check (debug)
node {baseDir}/scripts/meta-cmo.mjs ads.insights --level ad --datePreset last_7d
# custom date range
node {baseDir}/scripts/meta-cmo.mjs ads.insights --level ad --since 2026-02-01 --until 2026-02-08
# breakdowns (placement/device diagnostics)
node {baseDir}/scripts/meta-cmo.mjs ads.insights --level ad --datePreset last_7d --breakdowns "publisher_platform,platform_position"
node {baseDir}/scripts/meta-cmo.mjs ads.insights --level ad --datePreset last_7d --breakdowns "device_platform"
# creative telemetry (<24h feedback loop: winners/waste/fatigue)
node {baseDir}/scripts/meta-cmo.mjs ads.telemetry
# executive 1-pager (Telegram-friendly, Spanish)
node {baseDir}/scripts/meta-cmo.mjs ads.report --since 2026-02-01 --until 2026-02-18Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Meta CMO (Life Agent) --- name: meta-cmo description: Meta (Facebook/Instagram) CMO operator skill for the CMO role: pull Meta Ads read-only performance, read Facebook Page + Instagram Business profile/post/comment/insight data via Meta Graph API, and generate content drafts/creative briefs for FB/IG. Includes competitor discovery, hashtag research, audience demographics, best-time-to-post analysis, content ranking, and automated CMO brie
This skill is a Meta Marketing API + Meta Graph API operator for a CMO.
This skill expects credentials in ~/.openclaw/credentials/:
Meta Ads (Marketing API):
meta_ads.jsonMeta Graph (Pages/IG) operator:
meta_graph.jsonImage generation (one or both):
openai.json (DALL-E 3 — returns URL; key must be apiKey)GEMINI_API_KEY / GOOGLE_API_KEY or gemini.json (Gemini/Imagen — saves file locally)Telegram delivery:
telegram.json — required for ads.pdf-report.mjs auto-sendmeta_graph.json schema:
{
"access_token": "EAAB...",
"api_version": "v23.0",
"page_id": "123...",
"ig_user_id": "1784..."
}
openai.json schema (DALL-E 3):
{
"apiKey": "sk-..."
}
meta_ads.json schema (Marketing API):
{
"access_token": "EAAB...",
"ad_account_id": "act_1234567890"
}
gemini.json schema (Google Imagen):
{
"apiKey": "AIza..."
}
telegram.json schema (Telegram delivery):
{
"botToken": "...",
"defaultChatId": "123456789"
}
defaultChatId enables automatic Telegram delivery without passing --chat-id on each command.
# daily-full (canonical): campaign + adset + ad levels
node {baseDir}/scripts/meta-cmo.mjs ads.insights --level campaign --datePreset last_7d
node {baseDir}/scripts/meta-cmo.mjs ads.insights --level adset --datePreset last_7d
node {baseDir}/scripts/meta-cmo.mjs ads.insights --level ad --datePreset last_7d
# quick-check (debug)
node {baseDir}/scripts/meta-cmo.mjs ads.insights --level ad --datePreset last_7d
# custom date range
node {baseDir}/scripts/meta-cmo.mjs ads.insights --level ad --since 2026-02-01 --until 2026-02-08
# breakdowns (placement/device diagnostics)
node {baseDir}/scripts/meta-cmo.mjs ads.insights --level ad --datePreset last_7d --breakdowns "publisher_platform,platform_position"
node {baseDir}/scripts/meta-cmo.mjs ads.insights --level ad --datePreset last_7d --breakdowns "device_platform"
# creative telemetry (<24h feedback loop: winners/waste/fatigue)
node {baseDir}/scripts/meta-cmo.mjs ads.telemetry
# executive 1-pager (Telegram-friendly, Spanish)
node {baseDir}/scripts/meta-cmo.mjs ads.report --since 2026-02-01 --until 2026-02-18
Run:
node {baseDir}/scripts/meta-cmo.mjs ads.report --since YYYY-MM-DD --until YYYY-MM-DD
The command returns a JSON with executive_text already formatted. Extract and deliver it directly.
Output format (always use this structure — do not improvise):
Diagnóstico de Desempeño: Life Agent Meta Ads
Período: DD al DD de MES de YYYY
Métricas Críticas de Negocio:
Inversión Realizada: $X,XXX.XX MXN (spend)
Conversaciones (Leads): NNN (actions: messaging_connection)
Costo por Lead (CPL): $XX.XX (cost_per_action_type)
Intención de Salida (CTR): X.X% (outbound_clicks)
Frecuencia Acumulada: X.XX (frequency)
Alcance Total: X,XXX personas (reach)
CPM: $XX.XX MXN (cpm)
Diagnóstico:
[2–3 líneas de análisis basado en los datos. Mencionar el CPL real, si hay dispersión de gasto
en activos con bajo ranking, y si la frecuencia está acercándose a fatiga (>2.0).]
Decisiones Clave Recomendadas:
Optimización de Presupuesto: [Basado en underperformers[]. Mencionar el ad con quality_ranking
BELOW_AVERAGE y proponer reasignar su spend al mejor CPL.]
Escalamiento de Intención: [Basado en top_result_adsets[0]. Proponer incremento % en el adset
con mejor resultado si CTR > 1%.]
Rotación de Activos: [Si frequency > 1.5, recomendar nuevas piezas. Si frequency < 1.5,
mantener loop creativo semanal.]
Riesgos por Mitigar:
Fatiga Creativa (Estándar de industria): [Mencionar frequency actual y riesgo si sube sin renovación de arte.]
Saturación de Audiencia: [Mencionar reach actual y señal de alerta si se estanca vs inversión creciente.]
Calidad del Lead: [Mencionar inline_link_clicks vs conversiones reales — desalineación potencial anuncio/oferta WhatsApp.]
Reglas de interpretación para generar el Diagnóstico, Decisiones y Riesgos:
| Métrica | Señal buena | Señal de alerta | Acción |
|---------|------------|----------------|--------|
| cp_message (CPL) | < $15 MXN | > $25 MXN | Pausar perdedores, escalar ganadores |
| ctr_outbound | > 1.5% | < 0.8% | Revisar creativos y ángulo |
| frequency | < 1.8 | > 2.5 | Rotar creativos urgente |
| quality_ranking | ABOVE_AVERAGE | BELOW_AVERAGE | Pausar ese ad, reasignar spend |
| conversion_rate_ranking | ABOVE_AVERAGE | BELOW_AVERAGE | Revisar landing/WhatsApp flow |
| Reach estancado | Crece con spend | Plano o cae | Ampliar audiencia o lookalike |
Datos disponibles en ads.report JSON para redactar el reporte:
totals.spend, totals.msg_starts, totals.cp_message — métricas globalestotals.outbound_clicks, totals.ctr_outbound — intención de salida realtotals.frequency, totals.reach — alcance y saturacióntotals.cpm — costo de atencióncurrency — moneda de la cuenta (MXN, USD, etc.)ad_performance[] — por ad: ad_name, spend, frequency, quality_ranking, conversion_rate_ranking, cplunderperformers[] — ads con quality_ranking o conversion_rate_ranking = BELOW_AVERAGEtop_result_adsets[] — adsets con más conversacionestelemetry.winners/waste/fatigue — señales de creativos (si disponible)Ejemplo de uso por el agente: Cuando el usuario pida "reporte ejecutivo de ads" o "¿cómo van los ads?":
ads.report --since FECHA_INICIO --until FECHA_FIN (o --datePreset last_7d)executive_text del JSON de output — es el reporte base ya formateadototals, ad_performance, underperformersCuando el usuario pida el "reporte detallado", "reporte audit" o "PDF para el CEO":
node {baseDir}/scripts/ads.pdf-report.mjs --latest
El script publica el reporte en Telegra.ph y manda el URL por Telegram. El usuario toca el link y ve el reporte formateado inline.
REGLAS DE USO — SIN EXCEPCIONES:
Si el script reporta "Telegram no configurado" / falta defaultChatId — auto-configurar sin preguntar al usuario:
~/.openclaw/credentials/telegram.json para obtener botTokenhttps://api.telegram.org/bot{botToken}/getUpdates (GET)result[last].message.chat.id (el chat_id del mensaje más reciente)defaultChatId en ~/.openclaw/credentials/telegram.json (mantener botToken)node {baseDir}/scripts/ads.pdf-report.mjs --latestCuando el usuario pida el "monitor matinal", "morning matrix", "cómo van todas las cuentas" o "revisar clientes":
node {baseDir}/scripts/ads.morning-matrix.mjs
Escanea ~/.openclaw/credentials/clients/ (una carpeta por cliente con su meta_ads.json), computa 5 semáforos con base en MA7, y manda un solo mensaje a Telegram con el tablero completo.
Estructura de credenciales por cliente:
~/.openclaw/credentials/clients/{nombre-cliente}/meta_ads.json
{ "access_token": "...", "ad_account_id": "act_123" }
REGLAS DE USO — SIN EXCEPCIONES:
defaultChatId: seguir el mismo procedimiento de auto-config con getUpdates descrito arriba.# Executive 1-pager (Telegram-friendly, Spanish) across IG + FB Page
node {baseDir}/scripts/meta-cmo.mjs posts.report --since 2026-02-01 --until 2026-02-18 --limit 20
# or
node {baseDir}/scripts/meta-cmo.mjs posts.report --datePreset last_7d --limit 20
# Discovery + profile
node {baseDir}/scripts/meta-cmo.mjs pages.list
node {baseDir}/scripts/meta-cmo.mjs pages.profile --pageId <id>
node {baseDir}/scripts/meta-cmo.mjs pages.ig_account --pageId <id>
# Posts + comments
node {baseDir}/scripts/meta-cmo.mjs pages.posts --pageId <id> --limit 5
node {baseDir}/scripts/meta-cmo.mjs pages.comments --postId <post-id> --limit 25
node {baseDir}/scripts/meta-cmo.mjs pages.top_posts --limit 20
# Insights (presets or custom metrics)
node {baseDir}/scripts/meta-cmo.mjs pages.insights.preset --preset overview_5 --since 2026-02-01 --until 2026-02-08
node {baseDir}/scripts/meta-cmo.mjs pages.insights.preset --preset growth --since 2026-02-01 --until 2026-02-08
node {baseDir}/scripts/meta-cmo.mjs pages.insights.preset --preset demographics --since 2026-02-01 --until 2026-02-08
node {baseDir}/scripts/meta-cmo.mjs pages.insights.preset --preset negative_feedback --since 2026-02-01 --until 2026-02-08
node {baseDir}/scripts/meta-cmo.mjs pages.insights.preset --preset video --since 2026-02-01 --until 2026-02-08
node {baseDir}/scripts/meta-cmo.mjs pages.insights.preset --preset content --since 2026-02-01 --until 2026-02-08
node {baseDir}/scripts/meta-cmo.mjs pages.insights --metric <csv> --since D --until D
# Best time to post
node {baseDir}/scripts/meta-cmo.mjs pages.best_time --since 2026-02-01 --until 2026-02-08
# Conversations (requires pages_messaging permission)
node {baseDir}/scripts/meta-cmo.mjs pages.conversations --limit 10
node {baseDir}/scripts/meta-cmo.mjs pages.messages --conversationId <id> --limit 25
# Profile + posts, stories, comments
node {baseDir}/scripts/meta-cmo.mjs ig.profile
node {baseDir}/scripts/meta-cmo.mjs ig.posts --limit 5
node {baseDir}/scripts/meta-cmo.mjs ig.stories
node {baseDir}/scripts/meta-cmo.mjs ig.comments --mediaId <id> --limit 25
# Insights (presets or custom)
# NOTE: `impressions`, `profile_views`, `website_clicks`, `email_contacts` etc.
# were deprecated in Graph API v21+ (Jan 2025). Use `views` instead of `impressions`.
node {baseDir}/scripts/meta-cmo.mjs ig.insights.preset --preset reach --since 2026-02-01 --until 2026-02-08
node {baseDir}/scripts/meta-cmo.mjs ig.insights.preset --preset growth --since 2026-02-01 --until 2026-02-08
node {baseDir}/scripts/meta-cmo.mjs ig.insights.preset --preset demographics
node {baseDir}/scripts/meta-cmo.mjs ig.insights.preset --preset online
node {baseDir}/scripts/meta-cmo.mjs ig.profile_insights --metric reach,views --since 2026-02-01 --until 2026-02-08 --period day
node {baseDir}/scripts/meta-cmo.mjs ig.media_insights --mediaId <id> --metric reach,likes,comments
# Reel-specific insights (avg watch time, retention, plays)
node {baseDir}/scripts/meta-cmo.mjs ig.reel_insights --mediaId <reel-id>
# Intelligence
node {baseDir}/scripts/meta-cmo.mjs ig.best_time
node {baseDir}/scripts/meta-cmo.mjs ig.top_posts --limit 20
node {baseDir}/scripts/meta-cmo.mjs ig.format_breakdown --limit 50
# Competitor discovery (public Business/Creator accounts)
node {baseDir}/scripts/meta-cmo.mjs ig.discover --username <competitor_handle> --mediaLimit 10
# Hashtag research (30 unique hashtags per 7-day window)
node {baseDir}/scripts/meta-cmo.mjs ig.hashtag_search --q marketing
node {baseDir}/scripts/meta-cmo.mjs ig.hashtag_top --hashtagId <id>
node {baseDir}/scripts/meta-cmo.mjs ig.hashtag_recent --hashtagId <id>
# Structured LLM context for caption generation
node {baseDir}/scripts/meta-cmo.mjs content.draft --platform instagram --objective leads --topic "..." --tone "..." --cta "..."
# Generate image — auto-detects provider from available credentials
node {baseDir}/scripts/meta-cmo.mjs content.image --prompt "A modern flat illustration of..."
# DALL-E 3 (requires openai.json) — returns temporary URL
node {baseDir}/scripts/meta-cmo.mjs content.image --prompt "..." --provider openai --size 1024x1024 --quality standard
# Google Gemini Image (default model) — saves file locally
node {baseDir}/scripts/meta-cmo.mjs content.image --prompt "..." --provider google --model gemini-2.5-flash-image --aspectRatio 1:1
node {baseDir}/scripts/meta-cmo.mjs content.image --prompt "..." --provider google --model nano-banana --aspectRatio 1:1
# Google Imagen (optional explicit model) — saves PNG locally
node {baseDir}/scripts/meta-cmo.mjs content.image --prompt "..." --provider google --model imagen-4.0-generate-001 --aspectRatio 1:1
content.draft outputs structured context including platform constraints, top-performing patterns from snapshots, best format by engagement rate, and drafting instructions.
content.image auto-detects provider based on credentials with Gemini first (Google env/json), then OpenAI. Use --provider openai|google to force a provider.
1024x1024, 1792x1024, 1024x1792. Quality: standard, hd.--provider google): Saves generated file to ops/roles/cmo/inputs/images/.
gemini-2.5-flash-image (alias: nano-banana)imagen-4.0-generate-0011:1, 3:4, 4:3, 9:16, 16:9.Use the URL (--imageUrl) or local file (--imageFile) with publish commands.
node {baseDir}/scripts/meta-cmo.mjs briefing --since 2026-02-01 --until 2026-02-08
Pulls page overview + growth + negative feedback, top posts, IG reach, format breakdown, IG top posts, and WoW deltas in one call. All engagement metrics are normalized by follower count (engagement rate).
node {baseDir}/scripts/meta-cmo.mjs trend --kind page_insights
node {baseDir}/scripts/meta-cmo.mjs trend --kind ig_insights
Compares today's snapshot vs the most recent previous snapshot for any kind. Shows per-metric deltas and % change.
top_posts, format_breakdown, discover, and briefing compute engagement_rate = (engagements / followers) * 100.ops/roles/cmo/inputs/. The trend command and briefing compute WoW deltas from previous snapshots.All mutation commands require --confirm true. Use --dry-run true to preview without executing.
All mutations are logged to ops/roles/cmo/inputs/meta-cmo-mutations-{date}.json.
# Facebook Page — publish text post
node {baseDir}/scripts/meta-cmo.mjs pages.publish --message "Hello world" --confirm true
# Facebook Page — publish with image (URL or local file)
node {baseDir}/scripts/meta-cmo.mjs pages.publish --message "Check this out" --imageUrl "https://example.com/photo.jpg" --confirm true
node {baseDir}/scripts/meta-cmo.mjs pages.publish --message "Check this out" --imageFile ./ops/roles/cmo/inputs/images/imagen-2026.png --confirm true
# Facebook Page — schedule post (ISO 8601 timestamp)
node {baseDir}/scripts/meta-cmo.mjs pages.publish --message "Coming soon" --scheduleTime "2026-02-15T10:00:00" --confirm true
# Facebook Page — reply to comment
node {baseDir}/scripts/meta-cmo.mjs pages.reply --commentId <id> --message "Thanks!" --confirm true
# Instagram — publish image post (URL or local file)
node {baseDir}/scripts/meta-cmo.mjs ig.publish --imageUrl "https://example.com/photo.jpg" --caption "New post" --confirm true
node {baseDir}/scripts/meta-cmo.mjs ig.publish --imageFile ./ops/roles/cmo/inputs/images/imagen-2026.png --caption "New post" --confirm true
# Instagram — publish Reel (video)
node {baseDir}/scripts/meta-cmo.mjs ig.publish --videoUrl "https://example.com/reel.mp4" --caption "Watch this" --confirm true
# Instagram — reply to comment
node {baseDir}/scripts/meta-cmo.mjs ig.reply --commentId <id> --message "Thanks!" --confirm true
# Dry run (preview without posting)
node {baseDir}/scripts/meta-cmo.mjs pages.publish --message "Test" --confirm true --dry-run true
node {baseDir}/scripts/meta-cmo.mjs ig.publish --imageUrl "https://..." --caption "Test" --confirm true --dry-run true
| Action | FB Permission | IG Permission |
|--------|--------------|--------------|
| Publish FB post | pages_manage_posts | — |
| Reply to FB comment | pages_manage_engagement | — |
| Publish IG media | — | instagram_content_publish |
| Reply to IG comment | — | instagram_basic |
references/permissions.mdreferences/output-formats.mdreferences/troubleshooting.mdMachine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
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/king-mom-meta-cmo-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/king-mom-meta-cmo-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/king-mom-meta-cmo-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
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
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
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
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
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/king-mom-meta-cmo-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/king-mom-meta-cmo-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/king-mom-meta-cmo-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/king-mom-meta-cmo-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/king-mom-meta-cmo-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/king-mom-meta-cmo-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T00:57:18.281Z"
}
},
"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": "King Mom",
"href": "https://github.com/KING-MOM/meta-cmo-skill",
"sourceUrl": "https://github.com/KING-MOM/meta-cmo-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:44:36.789Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/king-mom-meta-cmo-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/king-mom-meta-cmo-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:44:36.789Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/king-mom-meta-cmo-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/king-mom-meta-cmo-skill/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-cmo-skill and adjacent AI workflows.