stripe-verify
Installation
SKILL.md
Stripe Verify
Comprehensive end-to-end verification. Go deep — billing bugs are expensive.
Objective
Prove the integration works. Not "looks right" — actually works. Test real flows, verify real state changes, confirm real webhook delivery.
Process
1. Configuration Verification
Before functional tests, verify all configuration:
# Env vars exist
bunx convex env list | rg "^(STRIPE_|CONVEX_WEBHOOK_TOKEN=)"
bunx convex env list --prod | rg "^(STRIPE_|CONVEX_WEBHOOK_TOKEN=)"
vercel env ls --environment=production 2>/dev/null | rg "^(STRIPE_|CONVEX_WEBHOOK_TOKEN=)" || true
Related skills