stripe
Manage Stripe payments — customers, charges, subscriptions, invoices, and refunds.
What this skill does
# Stripe
Manage customers, payments, subscriptions, and invoices via the Stripe API.
## Environment Variables
- `STRIPE_SECRET_KEY` - Stripe secret key (starts with `sk_`)
## List customers
```bash
curl -s -u "$STRIPE_SECRET_KEY:" \
"https://api.stripe.com/v1/customers?limit=10" | jq '.data[] | {id, email, name}'
```
## Create payment intent
```bash
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
```bash
curl -s -u "$STRIPE_SECRET_KEY:" \
"https://api.stripe.com/v1/charges?limit=10" | jq '.data[] | {id, amount, currency, status}'
```
## List subscriptions
```bash
curl -s -u "$STRIPE_SECRET_KEY:" \
"https://api.stripe.com/v1/subscriptions?limit=10" | jq '.data[] | {id, customer, status, current_period_end}'
```
## List invoices
```bash
curl -s -u "$STRIPE_SECRET_KEY:" \
"https://api.stripe.com/v1/invoices?limit=10" | jq '.data[] | {id, customer, total, status}'
```
## Issue refund
```bash
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.
Related in Sales & CRM
process-mapper
IncludedUse when a BizOps lead, COO, or process-improvement owner needs to document an end-to-end business process (procurement, employee onboarding, incident handoff, customer-onboarding, claims adjudication) in BPMN-style notation, measure cycle times by stage, surface where work spends most of its time waiting vs. being worked, and quantify the gap between processing time and total elapsed time. Pairs Lean / Six Sigma / Theory-of-Constraints canon with deterministic stdlib-only Python tools to produce a process map, a ranked bottleneck list (with severity + root-cause hypothesis), and a cycle-time analysis (P50, P90, value-add ratio, Little's-Law throughput). Distinct from sales-pipeline, system-reliability (SLO), and strategic-OKR work — this is tactical process documentation for internal operations.
payment-integration
IncludedIntegrate payments with SePay (VietQR), Polar, Stripe, Paddle (MoR subscriptions), Creem.io (licensing). Checkout, webhooks, subscriptions, QR codes, multi-provider orders.
customer-success-manager
IncludedMonitors customer health, predicts churn risk, and identifies expansion opportunities using weighted scoring models for SaaS customer success
sales-engineer
IncludedAnalyzes RFP/RFI responses for coverage gaps, builds competitive feature comparison matrices, and plans proof-of-concept (POC) engagements for pre-sales engineering. Use when responding to RFPs, bids, or proposal requests; comparing product features against competitors; planning or scoring a customer POC or sales demo; preparing a technical proposal; or performing win/loss competitor analysis. Handles tasks described as 'RFP response', 'bid response', 'proposal response', 'competitor comparison', 'feature matrix', 'POC planning', 'sales demo prep', or 'pre-sales engineering'.
customer-success-manager
IncludedMonitors customer health, predicts churn risk, and identifies expansion opportunities using weighted scoring models for SaaS customer success
sales-engineer
IncludedAnalyzes RFP/RFI responses for coverage gaps, builds competitive feature comparison matrices, and plans proof-of-concept (POC) engagements for pre-sales engineering. Use when responding to RFPs, bids, or proposal requests; comparing product features against competitors; planning or scoring a customer POC or sales demo; preparing a technical proposal; or performing win/loss competitor analysis. Handles tasks described as 'RFP response', 'bid response', 'proposal response', 'competitor comparison', 'feature matrix', 'POC planning', 'sales demo prep', or 'pre-sales engineering'.