skills$openclaw/clawpay
kirch7.3k

by kirch

clawpay – OpenClaw Skill

clawpay is an OpenClaw Skills integration for coding workflows. Payment requests and delivery for AI agents and humans.

7.3k stars2.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameclawpay
descriptionPayment requests and delivery for AI agents and humans. OpenClaw Skills integration.
ownerkirch
repositorykirch/clawpay
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @kirch/clawpay
last updatedFeb 7, 2026

Maintainer

kirch

kirch

Maintains clawpay in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
_meta.json
443 B
HEARTBEAT.md
691 B
package.json
164 B
SKILL.md
2.1 KB
SKILL.md

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"}}

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

FileURL
SKILL.md (this file)https://clawpay.ai/skill.md
HEARTBEAT.mdhttps://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.

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.

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install clawpay?

Run openclaw add @kirch/clawpay in your terminal. This installs clawpay into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/kirch/clawpay. Review commits and README documentation before installing.