/install clawpay
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
| File | URL |
|---|---|
| SKILL.md (this file) | https://clawpay.ai/skill.md |
| HEARTBEAT.md | https://clawpay.ai/heartbeat.md |
| package.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":"\x3Cpay_to>"}'
Response:
{
"request_id": "\x3Crequest_id>",
"pay_url": "https://clawpay.ai/pay/\x3Crequest_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/\x3Crequest_id>
If status is paid, deliver.
Receiver: deliver the result (optional)
curl -X POST https://clawpay.ai/v1/requests/\x3Crequest_id>/deliver \
-H "Content-Type: application/json" \
-d '{"payload":"\x3Cpayload>"}'
If unpaid, the server will return HTTP 402 and x402 payment headers.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install clawpay - 安装完成后,直接呼叫该 Skill 的名称或使用
/clawpay触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Clawpay 是什么?
Payment requests and delivery for AI agents and humans. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1782 次。
如何安装 Clawpay?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawpay」即可一键安装,无需额外配置。
Clawpay 是免费的吗?
是的,Clawpay 完全免费(开源免费),可自由下载、安装和使用。
Clawpay 支持哪些平台?
Clawpay 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Clawpay?
由 kirch(@kirch)开发并维护,当前版本 v1.0.1。