ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

clawallex-skill

Pay for anything with USDC — virtual cards for any online checkout

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/clawallex-tech/clawallex-skill
Or

Clawallex

Pay for anything with USDC. Clawallex converts your stablecoin balance into virtual cards that work at any online checkout.

Quick Start

1. Get API Credentials

Sign up at Clawallex and create an API Key pair.

2. Connect Account

python3 {baseDir}/scripts/clawallex.py setup --action connect --api-key YOUR_KEY --api-secret YOUR_SECRET

3. Start Using

One-time payment:

python3 {baseDir}/scripts/clawallex.py pay --amount 50 --description "OpenAI API credits"

Subscription:

python3 {baseDir}/scripts/clawallex.py subscribe --amount 100 --description "AWS monthly billing"

4. Smoke Test

python3 {baseDir}/scripts/clawallex.py wallet          # check balance
python3 {baseDir}/scripts/clawallex.py cards            # list cards

Hard Rules

  1. Setup first — Run setup --action status before any payment. If not configured, guide user through setup --action connect.
  2. Check balance first — Run wallet before pay or subscribe to verify sufficient funds (Mode A only).
  3. Never expose card secrets — Decrypted PAN/CVV are STRICTLY for filling checkout forms. NEVER display to the user. Show only masked_pan from card-details.
  4. Confirm before paying — Echo amount and description back to user before creating a card.
  5. One command at a time — Run each command, check output, then proceed.

Typical Flows

Payment Flow (Mode A — Wallet Balance)

1. setup --action status                                    → check config
2. wallet                                                   → check balance
3. pay --amount 50 --description "OpenAI"                   → create flash card
4. card-details --card-id <ID from step 3>                  → get encrypted card data
5. Decrypt PAN/CVV (HKDF + AES-256-GCM)                    → use ONLY for checkout form

Subscription Flow

1. wallet                                                   → check balance
2. subscribe --amount 100 --description "AWS billing"       → create stream card
3. card-details --card-id <ID from step 2>                  → get card for sign-up form
4. refill --card-id <ID> --amount 50                        → top up when balance is low

Command Reference

All commands:

python3 {baseDir}/scripts/clawallex.py <command> [args]

Setup & Identity

User IntentCommand
Connect accountsetup --action connect --api-key KEY --api-secret SECRET
Check config statussetup --action status
Get sign-up linksetup --action register
Check API Key bindingwhoami
Bind client_idbootstrap or bootstrap --preferred-client-id MY_ID

Payments

Metadata

Stars3562
Views2
Updated2026-03-29
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-clawallex-tech-clawallex-skill": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.