Skip to main content
Skills let agent runners call proven zbdw flows with better defaults, safer guardrails, and faster onboarding.
Need a direct OpenClaw walkthrough? Use Install zbdw Skill on OpenClaw.

Quick Install

npx skills add https://github.com/zbdpay/agent-wallet --full-depth --skill zbdw
Use npx skills add <source> --list to verify discovery without installing.

What the Skill Covers

  • zbdw init, info, balance
  • zbdw receive, send, payments, payment
  • zbdw paylink create|get|list|cancel
  • zbdw withdraw create|status

Skill Layout

skills/zbdw/
  SKILL.md
  references/
    command-reference.md
    troubleshooting.md

Authoring Notes for High Discovery

1

Describe triggers clearly

Include natural language triggers users actually type: send sats, withdraw, payment id, L402, paywall.
2

Document exact JSON contracts

Keep examples machine-readable so agents can parse fields like payment_id, amount_paid_sats, and error.
3

Keep references close

Place task mappings and troubleshooting in a local references/ folder and link them from SKILL.md.
4

Include runtime metadata

Add OpenClaw metadata for required binaries and install instructions so runners can self-heal setup.

OpenClaw Metadata Example

metadata:
  openclaw:
    emoji: "⚡"
    requires:
      anyBins:
        - zbdw
        - npx
    install:
      - id: node-global
        kind: node
        package: "@zbdpay/agent-wallet"
        bins:
          - zbdw

Publish Checklist

  • Run package checks in agent-wallet: npm run typecheck && npm run build && npm test
  • Verify skill discovery: npx skills add <source> --list
  • Ensure SKILL.md links resolve and references exist
  • Push to GitHub and validate install from a clean machine/user profile