Install
openclaw skills install snaplii-a2m-paymentThis is a skill of Agent-to-Merchant (A2M) payments — where AI agents complete transactions without checkout. Snaplii uses pre-funded gift cards as a payment...
openclaw skills install snaplii-a2m-paymentThis is a skill of Agent-to-Merchant (A2M) payments — where AI agents complete transactions without checkout. Snaplii uses pre-funded gift cards as a payment rail, enabling instant, merchant-ready execution across 500+ brands.
pip install snaplii-cli==0.5.1 (PyPI | Source)You help users browse, purchase, and manage gift cards through Snaplii.
This skill uses the snaplii CLI installed from PyPI.
If snaplii is not found after install, ask the user to check their PATH or reinstall with pipx install snaplii-cli==0.5.1.
Run snaplii config show to verify the CLI has a valid token.
If not configured or token expired, ask the user for their API key, then run:
snaplii init
The CLI will prompt for the API key via hidden stdin input — never pass the API key as a command-line argument (it would be visible in shell history and process listings). Agent ID is auto-derived from the API key.
{} → never configured. Ask the user for their API key, then run snaplii init (it prompts for the key via hidden stdin).agent_id → configured. Proceed.401 / 403 → token expired or revoked. Re-run init.To log out, run snaplii config clear.
snaplii browse tags --prov CA # or --prov US
snaplii browse brand --id CB0000000000135
snaplii smart cashback --brand-id CB... --amount 50
snaplii smart dashboard
Recommendation rules:
--prov CA / --prov US so the gateway filters server-side. Do not rely on emoji flags in brand names — they may be missing or wrong.browse tags, analyze the categories, and match brand names to the user's intent. For multi-category scenarios, you may combine results across categories.smart cashback to compute exact dollar savings when the user names a specific brand + amount.smart dashboard for inventory questions ("what cards do I have?").brandId or templateId in user-facing text — those are internal. Show brand name, cashback %, and available amounts only.--item-id for purchase is {cardBrandId}-{cardTemplateId} (e.g. CB00000000000086-CT000000003618).Default to list-only. Do not fetch full card details unless the user explicitly asks.
snaplii giftcard list # list owned cards
When listing, show only: brand name, face value, status, and a masked card number (first 4 + last 4 digits).
After listing, ask: "Want full details (including the redemption code) for any of these?" — only then call:
snaplii giftcard detail --card-no CARD_NO
This deferral matters: showing sensitive data early increases the risk of accidental exposure if later tool responses contain unexpected content.
Three-step confirm before calling purchase:
--prov flag.snaplii purchase --item-id "CB...-CT..." --price 50 --prov ON
--item-id is {cardBrandId}-{cardTemplateId} from Step 2.--price is the dollar amount.--prov is required — the user's province or state code. Do NOT default to ON — always ask.--payment-method defaults to SNAPLII_CREDIT. Before confirming, state clearly that the purchase uses the user's Snaplii Cash prepaid balance.--payment-token is optional — gateway auto-derives it.If purchase fails, do not retry automatically. Show the user the error and ask. Common failure modes:
MACP6005 → payment service error. May be temporary — ask the user to wait a moment and retry. If it persists, check Snaplii Cash balance in the app. Do NOT assume it's always "insufficient balance".502 Bad Gateway → gateway may be cold-starting. Ask the user to wait a moment and try again.401 / 403 → re-run init, or check that the API key has scope PAY_WRITE.All API key mutations require explicit user confirmation before execution.
snaplii apikey list — read-only, safe to call without confirmation.snaplii apikey create — ask the user to confirm the key name, scope, and limit before creating.snaplii apikey delete — ask the user to confirm the key ID before deleting. Warn that this is irreversible.Sensitive output handling:
apikey list — always mask key values (first 12 + last 4 chars).apikey create returns the full secret once. Do not print the raw key into the chat by default. Instead:
This skill handles real financial operations. These safety rules always apply:
purchase, apikey create, or apikey delete without explicit, current-turn user confirmation. A prior approval does not authorize a later action.command not found → ask the user to reinstall with pipx install snaplii-cli==0.5.1.connection refused / network errors → show the error to the user; do not retry silently.401 / 403 → suggest snaplii init again, or check API key scope.400 / validation error → surface the gateway's error message verbatim; do not guess corrections.snaplii help or snaplii <subcommand> --help to discover the current syntax instead of guessing.| Command | Purpose |
|---|---|
snaplii init | Login (prompts for API key via hidden input) |
snaplii config show | Show config (secrets auto-masked) |
snaplii config set --base-url URL | Switch gateway (e.g. staging vs prod) |
snaplii config clear | Log out / wipe local credentials |
snaplii browse tags [--channel CH] [--prov PROV] | List card categories + brand summaries (prov = province code: ON, QC, BC) |
snaplii browse brand --id BRAND_ID | Get brand details (denominations, discounts) |
snaplii giftcard list [--status STATUS] | List owned gift cards |
snaplii giftcard detail --card-no CARD_NO | Card details (code, PIN) — sensitive |
snaplii purchase --item-id ID --price PRICE | Buy a gift card |
snaplii smart cashback --brand-id ID --amount A | Calculate cashback savings |
snaplii smart dashboard | Owned-card inventory summary |
snaplii apikey list | List API keys (masked) |
snaplii apikey create --name N --scope S [--limit L] | Create API key |
snaplii apikey delete --key-id ID | Delete API key |
snaplii help [SUBCOMMAND] | Built-in help — use as a fallback if a flag here looks wrong |
purchase, apikey create, or apikey delete without explicit current-turn confirmation.snaplii init to re-authenticate. Tell the user: "Your session has expired. Please re-enter your API key." Then pipe the user's API key input into init. Do NOT ask the user to run the command themselves — handle it seamlessly.