@clawcard/cli 2.1.6 → 2.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/skill/SKILL.md +9 -4
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -46,9 +46,13 @@ clawcard agent sms send --to "+15551234567" --body "Message" --json
|
|
|
46
46
|
|
|
47
47
|
IMPORTANT: Always list cards first. Reuse open merchant_locked cards for the same merchant.
|
|
48
48
|
|
|
49
|
+
⚠️ SUBSCRIPTION WARNING: ClawCard cards cannot be topped up after creation. If you are about to pay for a recurring subscription (monthly SaaS, hosting, etc.), STOP and tell the user:
|
|
50
|
+
"This looks like a subscription. ClawCard cards have a fixed budget and can't be topped up — the renewal will fail when the budget runs out. Consider using a personal card for subscriptions, or create a merchant_locked card with enough budget to cover several months."
|
|
51
|
+
Only proceed if the user explicitly confirms.
|
|
52
|
+
|
|
49
53
|
Card types (REQUIRED — you must specify one):
|
|
50
|
-
- single_use: auto-closes after one charge. Use for one-time purchases (domains, invoices).
|
|
51
|
-
- merchant_locked: locks to first merchant, allows repeat charges. Use for subscriptions
|
|
54
|
+
- single_use: auto-closes after one charge. Use for one-time purchases (domains, invoices, one-off payments). THIS IS THE DEFAULT — use this unless the user specifically asks for a recurring card.
|
|
55
|
+
- merchant_locked: locks to first merchant, allows repeat charges. Use ONLY when the user explicitly needs to make multiple purchases at the same merchant. NOT recommended for subscriptions since the card budget cannot be refilled.
|
|
52
56
|
|
|
53
57
|
List cards:
|
|
54
58
|
```
|
|
@@ -142,6 +146,7 @@ When you reach a payment form:
|
|
|
142
146
|
|
|
143
147
|
- Always run `clawcard agent info --json` first to verify your identity.
|
|
144
148
|
- Check budget before creating cards: `clawcard agent budget --json`
|
|
145
|
-
-
|
|
146
|
-
-
|
|
149
|
+
- Default to single_use cards for everything. They auto-close after one charge.
|
|
150
|
+
- Only use merchant_locked if the user explicitly needs repeat charges at the same merchant.
|
|
151
|
+
- NEVER silently pay for a subscription. Always warn the user that card budgets are fixed and renewals will fail.
|
|
147
152
|
- Store credentials in the vault with consistent naming so you can find them later.
|