{
  "schemaVersion": "1.0",
  "item": {
    "slug": "messenger",
    "name": "Messenger",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/codedao12/messenger",
    "canonicalUrl": "https://clawhub.ai/codedao12/messenger",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/messenger",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=messenger",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/permissions-and-tokens.md",
      "references/messaging.md",
      "references/webhooks.md",
      "references/conversation-patterns.md",
      "references/messenger-api-overview.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "messenger",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T13:30:34.549Z",
      "expiresAt": "2026-05-07T13:30:34.549Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=messenger",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=messenger",
        "contentDisposition": "attachment; filename=\"messenger-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "messenger"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/messenger"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/messenger",
    "agentPageUrl": "https://openagent3.xyz/skills/messenger/agent",
    "manifestUrl": "https://openagent3.xyz/skills/messenger/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/messenger/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Purpose",
        "body": "Provide a production-oriented guide for Messenger Platform workflows: sending messages, handling webhooks, and managing Page messaging using direct HTTPS calls."
      },
      {
        "title": "Best fit",
        "body": "You need bot-style messaging in Facebook Messenger.\nYou want clean webhook handling and message UX.\nYou prefer direct HTTP requests rather than SDKs."
      },
      {
        "title": "Not a fit",
        "body": "You need advanced Graph API Ads or Marketing workflows.\nYou must use complex browser-based OAuth flows."
      },
      {
        "title": "Quick orientation",
        "body": "Read references/messenger-api-overview.md for base URLs and core object map.\nRead references/webhooks.md for verification and signature validation.\nRead references/messaging.md for Send API fields and message types.\nRead references/permissions-and-tokens.md for token flow and required permissions.\nRead references/request-templates.md for concrete HTTP payloads.\nRead references/conversation-patterns.md for UX flows (get started, menu, fallback).\nRead references/webhook-event-map.md for event types and routing."
      },
      {
        "title": "Required inputs",
        "body": "Facebook App ID and App Secret.\nPage ID and Page access token.\nWebhook URL and verify token.\nMessage UX and allowed interactions."
      },
      {
        "title": "Expected output",
        "body": "A clear messaging workflow plan, permissions checklist, and operational guardrails."
      },
      {
        "title": "Operational notes",
        "body": "Validate signatures on all webhook events.\nKeep replies short and acknowledge quickly.\nHandle rate limits and retries with backoff."
      },
      {
        "title": "Security notes",
        "body": "Never log tokens or app secrets.\nUse least-privilege permissions."
      }
    ],
    "body": "Facebook Messenger API Skill (Advanced)\nPurpose\n\nProvide a production-oriented guide for Messenger Platform workflows: sending messages, handling webhooks, and managing Page messaging using direct HTTPS calls.\n\nBest fit\nYou need bot-style messaging in Facebook Messenger.\nYou want clean webhook handling and message UX.\nYou prefer direct HTTP requests rather than SDKs.\nNot a fit\nYou need advanced Graph API Ads or Marketing workflows.\nYou must use complex browser-based OAuth flows.\nQuick orientation\nRead references/messenger-api-overview.md for base URLs and core object map.\nRead references/webhooks.md for verification and signature validation.\nRead references/messaging.md for Send API fields and message types.\nRead references/permissions-and-tokens.md for token flow and required permissions.\nRead references/request-templates.md for concrete HTTP payloads.\nRead references/conversation-patterns.md for UX flows (get started, menu, fallback).\nRead references/webhook-event-map.md for event types and routing.\nRequired inputs\nFacebook App ID and App Secret.\nPage ID and Page access token.\nWebhook URL and verify token.\nMessage UX and allowed interactions.\nExpected output\nA clear messaging workflow plan, permissions checklist, and operational guardrails.\nOperational notes\nValidate signatures on all webhook events.\nKeep replies short and acknowledge quickly.\nHandle rate limits and retries with backoff.\nSecurity notes\nNever log tokens or app secrets.\nUse least-privilege permissions."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/codedao12/messenger",
    "publisherUrl": "https://clawhub.ai/codedao12/messenger",
    "owner": "codedao12",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/messenger",
    "downloadUrl": "https://openagent3.xyz/downloads/messenger",
    "agentUrl": "https://openagent3.xyz/skills/messenger/agent",
    "manifestUrl": "https://openagent3.xyz/skills/messenger/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/messenger/agent.md"
  }
}