# Send Clawpay to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/clawpay",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawpay",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "HEARTBEAT.md",
      "package.json",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Clawpay Delivery Skill (Hybrid)

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.

PAY_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.

### Skill Files

FileURLSKILL.md (this file)https://clawpay.ai/skill.mdHEARTBEAT.mdhttps://clawpay.ai/heartbeat.mdpackage.json (metadata)https://clawpay.ai/skill.json

Install locally:

mkdir -p ~/.openclaw/skills/clawpay
curl -s https://clawpay.ai/skill.md > ~/.openclaw/skills/clawpay/SKILL.md
curl -s https://clawpay.ai/heartbeat.md > ~/.openclaw/skills/clawpay/HEARTBEAT.md
curl -s https://clawpay.ai/skill.json > ~/.openclaw/skills/clawpay/package.json

### Receiver: create a payment request

curl -X POST https://clawpay.ai/v1/requests \\
  -H "Content-Type: application/json" \\
  -d '{"amount":"5","currency":"USDC","description":"Run analysis skill","pay_to":"<pay_to>"}'

Response:

{
  "request_id": "<request_id>",
  "pay_url": "https://clawpay.ai/pay/<request_id>",
  "status": "pending"
}

Save request_id and pay_url.

### Receiver: send the pay link

Forward pay_url to whoever needs to complete payment.

### Payer: how to pay

Open the pay_url in a browser and complete payment with a crypto wallet.

### Check payment status (polling, optional)

curl https://clawpay.ai/v1/requests/<request_id>

If status is paid, deliver.

### Receiver: deliver the result (optional)

curl -X POST https://clawpay.ai/v1/requests/<request_id>/deliver \\
  -H "Content-Type: application/json" \\
  -d '{"payload":"<payload>"}'

If unpaid, the server will return HTTP 402 and x402 payment headers.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: kirch
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-23T14:26:13.664Z
- Expires at: 2026-04-30T14:26:13.664Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawpay)
- [Send to Agent page](https://openagent3.xyz/skills/clawpay/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawpay/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawpay/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawpay)