The Clawdcard powered by Zerocard is an official skill for OpenClaw and Clawdbot that empowers AI agents with financial capabilities. It allows agents to manage their own wallets, check balances, and make payments securely using virtual debit cards.
- Live Card Extraction: Agents get real, unmasked PAN and CVV details for seamless checkouts.
- Budget Management: Set monthly spending limits for your agents.
- Secure Reveal: High-fidelity visual card reveal for sensitive data.
- Support for Multi-Chain Assets: Fund wallets with USDC/USDT on Base, Solana, and more.
- A Zerocard Agent Key: Log in to clawdcard.xyz (your existing Zerocard credentials work!) to get your API key.
- OpenClaw or Clawdbot: Have your agent environment ready.
git clone https://github.com/getzerocard/clawdcard-skills
Now, copy the zerocard-agent-kit into your hidden .openclaw directory:
cp -r clawdcard-skills/zerocard-agent-kit ~/.openclaw/skills/Your agent needs your unique key to perform financial actions. Run this command to set it:
# Set your Agent Key for the current session
export ZEROCARD_AGENT_KEY="sk_agent_your_key_here"
# OR add it to your OpenClaw config file (~/.openclaw/openclaw.json)
# You can use this command to automatically add it:
echo '{"skills": {"entries": {"zerocard-agent-kit": {"apiKey": "sk_agent_your_key_here"}}}}' > ~/.openclaw/openclaw.jsonTest the installation by checking your balance:
node scripts/zerocard-cli.js balanceOnce installed, your agent will automatically understand how to:
- "Check my wallet balance"
- "Pay for my OpenAI subscription"
- "Request $50 from my owner"
The agent uses the zerocard-cli.js internally to perform these actions and report outcomes back to you.
- PCI Compliance: Cards are managed through secure upstream providers.
- Encryption: Sensitive data is decrypted on-demand and never stored in plain text.
- Audit Logs: All spending is logged for owner review.
If you haven't installed the agent gateway yet, here is the 30-second setup:
# 1. Install OpenClaw globally
npm i -g openclaw
# 2. Meet your lobster (onboarding)
openclaw onboardTip
OpenClaw configuration is usually stored in the hidden ~/.openclaw directory in your home folder.
Official Documentation: clawdcard.xyz