stripe-health
Installation
SKILL.md
/stripe-health - Stripe Webhook Health Check
Run a comprehensive diagnostic on Stripe webhook integration.
When to Use
- Before deploying changes to webhook handlers
- When subscription sync issues are reported
- After configuring new webhook endpoints
- As part of incident investigation
Diagnostic Steps
1. Check Webhook Endpoints
# List all webhook endpoints for this project
stripe webhook_endpoints list --api-key "$STRIPE_SECRET_KEY" 2>&1 | jq '.data[] | {id, url, status, enabled_events}'
Related skills