integrationlisted
Install: claude install-skill Florkin/claude-stripe-skills
# Stripe Integration (router)
Entry point for every Stripe task. **Classify the need, then route.** Do not implement a full flow from this file — it names the canonical objects and hands off to the specialised sibling skill. The shared foundations (auth, idempotency, money, errors, CLI, testing) apply to every route and live in `reference/`.
**Pinned Stripe API version: `2026-06-24.dahlia`** (major release "Dahlia"). Override per request with the `Stripe-Version` header; each webhook endpoint pins its own version at creation. See `reference/foundations.md`.
All examples below are SDK-neutral (raw REST + a one-line cross-SDK note). Nothing here is framework-specific.
---
## When to use / decision tree
Two questions, in order: **(1) WHAT is being built** → picks the product + sibling skill. **(2) HOW is it surfaced** → picks the UI/integration surface.
### Step 1 ��� WHAT (classify the product)
| The ask is about… | Product family | Route to |
|---|---|---|
| Accept a one-time / on-demand payment for **your own** business | Payments (PaymentIntent) | **stripe-suite:payments** |
| Recurring charges, subscriptions, plans/tiers, trials, renewals, metered/usage-based, automated invoicing | Billing | **stripe-suite:billing** |
| In-person / point-of-sale, physical card reader, Tap to Pay | Terminal | **stripe-suite:terminal** |
| Platform/marketplace: pay out to or split funds among **other** parties (multiple sellers/vendors) | Connect | **stripe-suite:connect** |
| Receive