stripe-setup
Installation
SKILL.md
Set up Stripe payments: $ARGUMENTS
$ARGUMENTS can include:
- "subscriptions" — recurring billing with plans (default)
- "one-time" — single charge / product purchase
- "both" — subscriptions + one-time payments
- "with-portal" — include Stripe Customer Portal (default: included)
- "minimal" — webhooks + basic checkout only, no portal
- Empty — full subscription setup with portal
Before Starting
- Read
package.jsonto detect framework (Next.js vs Vite + Express) - Read
src/lib/env.tsto see existing env var patterns - Read
src/lib/database/schema.ts— check for existing subscriptions/customers tables - Check Supabase MCP for
subscriptions,stripe_customerstables - Read
src/lib/services/simplified/for service patterns to match