{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawpay",
    "name": "Clawpay",
    "source": "tencent",
    "type": "skill",
    "category": "金融交易",
    "sourceUrl": "https://clawhub.ai/kirch/clawpay",
    "canonicalUrl": "https://clawhub.ai/kirch/clawpay",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clawpay",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawpay",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "HEARTBEAT.md",
      "package.json",
      "SKILL.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": "clawpay",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T14:26:13.664Z",
      "expiresAt": "2026-04-30T14:26:13.664Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawpay",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawpay",
        "contentDisposition": "attachment; filename=\"clawpay-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawpay"
      },
      "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/clawpay"
    },
    "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/clawpay",
    "agentPageUrl": "https://openagent3.xyz/skills/clawpay/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawpay/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawpay/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": "Clawpay Delivery Skill (Hybrid)",
        "body": "This skill provides a minimal flow to create a paid request, collect payment, and deliver a result. Use it for any agent-to-agent or human-to-agent exchange.\n\nPAY_TO: pass the receiving wallet address when creating a request (pay_to).\nDefault PAY_TO rule: you can set a default receiving address in skill.json so the sender doesn't need to provide one each time."
      },
      {
        "title": "Skill Files",
        "body": "FileURLSKILL.md (this file)https://clawpay.ai/skill.mdHEARTBEAT.mdhttps://clawpay.ai/heartbeat.mdpackage.json (metadata)https://clawpay.ai/skill.json\n\nInstall locally:\n\nmkdir -p ~/.openclaw/skills/clawpay\ncurl -s https://clawpay.ai/skill.md > ~/.openclaw/skills/clawpay/SKILL.md\ncurl -s https://clawpay.ai/heartbeat.md > ~/.openclaw/skills/clawpay/HEARTBEAT.md\ncurl -s https://clawpay.ai/skill.json > ~/.openclaw/skills/clawpay/package.json"
      },
      {
        "title": "Receiver: create a payment request",
        "body": "curl -X POST https://clawpay.ai/v1/requests \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"amount\":\"5\",\"currency\":\"USDC\",\"description\":\"Run analysis skill\",\"pay_to\":\"<pay_to>\"}'\n\nResponse:\n\n{\n  \"request_id\": \"<request_id>\",\n  \"pay_url\": \"https://clawpay.ai/pay/<request_id>\",\n  \"status\": \"pending\"\n}\n\nSave request_id and pay_url."
      },
      {
        "title": "Receiver: send the pay link",
        "body": "Forward pay_url to whoever needs to complete payment."
      },
      {
        "title": "Payer: how to pay",
        "body": "Open the pay_url in a browser and complete payment with a crypto wallet."
      },
      {
        "title": "Check payment status (polling, optional)",
        "body": "curl https://clawpay.ai/v1/requests/<request_id>\n\nIf status is paid, deliver."
      },
      {
        "title": "Receiver: deliver the result (optional)",
        "body": "curl -X POST https://clawpay.ai/v1/requests/<request_id>/deliver \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"payload\":\"<payload>\"}'\n\nIf unpaid, the server will return HTTP 402 and x402 payment headers."
      }
    ],
    "body": "Clawpay Delivery Skill (Hybrid)\n\nThis skill provides a minimal flow to create a paid request, collect payment, and deliver a result. Use it for any agent-to-agent or human-to-agent exchange.\n\nPAY_TO: pass the receiving wallet address when creating a request (pay_to). Default PAY_TO rule: you can set a default receiving address in skill.json so the sender doesn't need to provide one each time.\n\nSkill Files\nFile\tURL\nSKILL.md (this file)\thttps://clawpay.ai/skill.md\nHEARTBEAT.md\thttps://clawpay.ai/heartbeat.md\npackage.json (metadata)\thttps://clawpay.ai/skill.json\n\nInstall locally:\n\nmkdir -p ~/.openclaw/skills/clawpay\ncurl -s https://clawpay.ai/skill.md > ~/.openclaw/skills/clawpay/SKILL.md\ncurl -s https://clawpay.ai/heartbeat.md > ~/.openclaw/skills/clawpay/HEARTBEAT.md\ncurl -s https://clawpay.ai/skill.json > ~/.openclaw/skills/clawpay/package.json\n\nReceiver: create a payment request\ncurl -X POST https://clawpay.ai/v1/requests \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"amount\":\"5\",\"currency\":\"USDC\",\"description\":\"Run analysis skill\",\"pay_to\":\"<pay_to>\"}'\n\n\nResponse:\n\n{\n  \"request_id\": \"<request_id>\",\n  \"pay_url\": \"https://clawpay.ai/pay/<request_id>\",\n  \"status\": \"pending\"\n}\n\n\nSave request_id and pay_url.\n\nReceiver: send the pay link\n\nForward pay_url to whoever needs to complete payment.\n\nPayer: how to pay\n\nOpen the pay_url in a browser and complete payment with a crypto wallet.\n\nCheck payment status (polling, optional)\ncurl https://clawpay.ai/v1/requests/<request_id>\n\n\nIf status is paid, deliver.\n\nReceiver: deliver the result (optional)\ncurl -X POST https://clawpay.ai/v1/requests/<request_id>/deliver \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"payload\":\"<payload>\"}'\n\n\nIf unpaid, the server will return HTTP 402 and x402 payment headers."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kirch/clawpay",
    "publisherUrl": "https://clawhub.ai/kirch/clawpay",
    "owner": "kirch",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawpay",
    "downloadUrl": "https://openagent3.xyz/downloads/clawpay",
    "agentUrl": "https://openagent3.xyz/skills/clawpay/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawpay/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawpay/agent.md"
  }
}