Back to Registry
View Author Profile
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-skillOr
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
- Setup first — Run
setup --action statusbefore any payment. If not configured, guide user throughsetup --action connect. - Check balance first — Run
walletbeforepayorsubscribeto verify sufficient funds (Mode A only). - Never expose card secrets — Decrypted PAN/CVV are STRICTLY for filling checkout forms. NEVER display to the user. Show only
masked_panfromcard-details. - Confirm before paying — Echo amount and description back to user before creating a card.
- 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 Intent | Command |
|---|---|
| Connect account | setup --action connect --api-key KEY --api-secret SECRET |
| Check config status | setup --action status |
| Get sign-up link | setup --action register |
| Check API Key binding | whoami |
| Bind client_id | bootstrap or bootstrap --preferred-client-id MY_ID |
Payments
Metadata
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.