Agent skill
stripe
Manage Stripe payments — customers, charges, subscriptions, invoices, and refunds.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/stripe-thinkfleetai-thinkfleet-engine
Metadata
Additional technical details for this skill
- thinkfleetbot
-
{ "emoji": "\ud83d\udcb3", "requires": { "env": [ "STRIPE_SECRET_KEY" ], "bins": [ "curl", "jq" ] } }
SKILL.md
Stripe
Manage customers, payments, subscriptions, and invoices via the Stripe API.
Environment Variables
STRIPE_SECRET_KEY- Stripe secret key (starts withsk_)
List customers
curl -s -u "$STRIPE_SECRET_KEY:" \
"https://api.stripe.com/v1/customers?limit=10" | jq '.data[] | {id, email, name}'
Create payment intent
curl -s -X POST -u "$STRIPE_SECRET_KEY:" \
"https://api.stripe.com/v1/payment_intents" \
-d "amount=2000" -d "currency=usd" | jq '{id, amount, currency, status}'
List charges
curl -s -u "$STRIPE_SECRET_KEY:" \
"https://api.stripe.com/v1/charges?limit=10" | jq '.data[] | {id, amount, currency, status}'
List subscriptions
curl -s -u "$STRIPE_SECRET_KEY:" \
"https://api.stripe.com/v1/subscriptions?limit=10" | jq '.data[] | {id, customer, status, current_period_end}'
List invoices
curl -s -u "$STRIPE_SECRET_KEY:" \
"https://api.stripe.com/v1/invoices?limit=10" | jq '.data[] | {id, customer, total, status}'
Issue refund
curl -s -X POST -u "$STRIPE_SECRET_KEY:" \
"https://api.stripe.com/v1/refunds" \
-d "charge=ch_xxx" | jq '{id, amount, status}'
Notes
- Amounts are in cents (2000 = $20.00).
- Always confirm before creating charges or refunds.
- Use test keys (
sk_test_) for development.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?