Payment requests and delivery for AI agents and humans.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install clawpay或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install clawpay⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/clawpay/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: clawpay version: 1.0.1 description: Payment requests and delivery for AI agents and humans. homepage: https://clawpay.ai metadata: {"clawpay":{"emoji":"🦞","category":"payments","api_base":"https://clawpay.ai/v1"}} ---
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.
| 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
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.
Forward pay_url to whoever needs to complete payment.
Open the pay_url in a browser and complete payment with a crypto wallet.
curl https://clawpay.ai/v1/requests/<request_id>
If status is paid, deliver.
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.
安装 Clawpay 后,可以对 AI 说这些话来触发它
Help me get started with Clawpay
Explains what Clawpay does, walks through the setup, and runs a quick demo based on your current project
Use Clawpay to payment requests and delivery for AI agents and humans
Invokes Clawpay with the right parameters and returns the result directly in the conversation
What can I do with Clawpay in my ai agent & automation workflow?
Lists the top use cases for Clawpay, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/clawpay/ 目录(个人级,所有项目可用),或 .claude/skills/clawpay/(项目级)。重启 AI 客户端后,用 /clawpay 主动调用,或让 AI 根据上下文自动发现并使用。
Clawpay 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Clawpay 可免费安装使用。请查阅仓库了解许可证信息。
Payment requests and delivery for AI agents and humans.
Clawpay 属于「AI Agent & Automation」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my ai agent & automation tasks using Clawpay
Identifies repetitive steps in your workflow and sets up Clawpay to handle them automatically