Skip to main content

stripe-integration-review

Reviews Stripe integration code for correctness -- idempotency, error handling, API version pinning, webhook signature checks, and race conditions. Use when the user asks to "review Stripe code", "audit our Stripe integration", or mentions integration bugs, double-charging, or race conditions. For security specifically, see stripe-security-audit.

Jump to install

Source facts

Repository
appeeky/stripe-skills
Last source activity
July 19, 2026 at 10:10
Detected SKILL.md language
English
Stars
5
Forks
1

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
stripe-integration-review
description
Reviews Stripe integration code for correctness -- idempotency, error handling, API version pinning, webhook signature checks, and race conditions. Use when the user asks to "review Stripe code", "audit our Stripe integration", or mentions integration bugs, double-charging, or race conditions. For security specifically, see stripe-security-audit.
metadata
{"version":"1.0.0"}
# Stripe Integration Review Reviews the **codebase** (not just live data). Grep the repo for Stripe usage, then audit. ## Search targets `new Stripe(`, `stripe.subscriptions`, `stripe.checkout`, `stripe.webhooks`, `apiVersion`, `idempotencyKey`. ## Review Checklist | Area | Check | |------|-------| | API version | Pinned explicitly, not floating | | Idempotency | `idempotencyKey` on create calls (retries safe) | | Webhooks | Signature verified with `constructEvent` | | Race conditions | Existing-subscription check before create (no double-bill) | | Error handling | Stripe errors caught by type, user-friendly messages | | Amounts | Cents, no float rounding bugs | | Secrets | Key from env, never hardcoded | | Proration | `proration_behavior` set intentionally on updates | ## Output Template ``` Integration Review Critical: - [file:line] -- [issue] -> [fix] Improve: - ... Good: - ... Top fix: [highest-risk item] ``` Reference live behavior with MCP only to confirm suspicions (e.g. duplicate subs via `active-subscriptions-audit`).
View on GitHub