Loading...
Loading...
Use this skill when you need to operate the Creem CLI for authentication checks, products, customers, checkouts, subscriptions, transactions, configuration, monitoring, or terminal automation workflows. Prefer it for agent-driven Creem tasks that should use real CLI commands and JSON output instead of dashboard clicks or guessed API calls.
npx skill4agent add santigamo/creem-cli-developer-toolkit creem-clicreemcreemcreemcreem whoami --json~/.creem/config.jsoncreem login --api-key ...creem whoami --json--jsoncreem whoami --jsoncreem productscreem customers--json--mode scheduled5005.00500.00--success-urlhttp://https://https://localhostERR_SSL_PROTOCOL_ERROR--price 199919.991999.00500 EUR5.00 EUR500.00 EURtran_6QWuvWPj9s9twH6vvdpOI8 | paid | 500 EURpaid transaction for 5.00 EUR (CLI raw amount: 500 minor units)| Action | Command |
|---|---|
| Check auth and environment | |
| Show config | |
| List config keys | |
| List products | |
| Get product | |
| Create product | |
| List customers | |
| Get customer by ID | |
| Get customer by email | |
| Billing portal link | |
| Create checkout | |
| Get checkout | |
| List subscriptions | |
| Filter subscriptions | |
| Get subscription | |
| Pause subscription | |
| Resume subscription | |
| Cancel subscription safely | |
| List transactions | |
| Get transaction | |
creem whoami --json
creem checkouts create --product prod_XXXXX --success-url http://localhost:3000/success --json
creem transactions list --limit 10 --json
creem subscriptions list --limit 10 --jsoncreem whoami --json
creem products create --name "Template Pack" --description "50 premium templates" --price 4999 --currency USD --billing-type onetime --tax-mode exclusive --tax-category digital-goods-service --json
creem products list --json
creem products get prod_XXXXX --jsoncreem customers list --json
creem customers get --email user@example.com --json
creem customers billing cust_XXXXX --jsoncreem subscriptions list --status active --json
creem subscriptions pause sub_XXXXX --json
creem subscriptions resume sub_XXXXX --json
creem subscriptions cancel sub_XXXXX --mode scheduled --json--mode scheduledcreem transactions list --limit 20 --json
creem subscriptions list --status active --json
creem subscriptions list --status paused --json
creem subscriptions list --status canceled --json
creem subscriptions list --status scheduled_cancel --jsonjqcreem config show --json
creem config get environment --json
creem config set environment testenvironmentoutput_format# Latest transaction ID
creem transactions list --limit 1 --json | jq -r '.[0].id'
# Count active subscriptions
creem subscriptions list --status active --json | jq 'length'
# Bulk checkout generation
for PRODUCT_ID in prod_AAA prod_BBB prod_CCC; do
creem checkouts create --product "$PRODUCT_ID" --json | jq -r '.checkout_url'
done