payments-stinger

Audit and implement Stripe payment workflows for non-Connect tasks.

72|28|Updated May 23, 2026
One-click install
npx skills add https://github.com/legioncodeinc/that-git-life --skill payments-stinger
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: payments-stinger
Source: https://github.com/legioncodeinc/that-git-life/tree/main/.claude/skills/payments-stinger
Command: npx skills add https://github.com/legioncodeinc/that-git-life --skill payments-stinger

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps engineering teams prevent payment failures, webhook bugs, subscription drift, and unsafe Stripe integration patterns by providing production-focused guidance for non-Connect Stripe systems.

Core Features & Use Cases

  • Stripe Integration Guidance: Design and implement Checkout, Payment Intents, Payment Links, Customer Portal, subscriptions, and webhook workflows with validated patterns.
  • Payment Reliability Audits: Review existing payment systems for idempotency gaps, webhook verification issues, API version changes, and lifecycle mistakes.
  • Use Case: Use this Skill when a SaaS team needs to migrate Stripe subscriptions, debug missing webhook events, or choose the right Stripe payment architecture.

Quick Start

Ask the payments-stinger skill to audit our Stripe integration for webhook, subscription, and idempotency issues.

Frequently Asked Questions about payments-stinger

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I audit my Stripe integration for webhook and idempotency issues?

To audit your Stripe integration for webhook and idempotency issues, review payment workflows for secure webhook verification, validate idempotency controls on API requests, and check for subscription lifecycle drift to prevent duplicate transactions and missing events.

What causes missing Stripe webhook events and how do I debug them?

Missing Stripe webhook events often occur due to unverified endpoints, unhandled event types, or API version mismatches. Debugging requires verifying webhook signatures, checking endpoint responses, and ensuring idempotency controls handle duplicate or failed deliveries safely.

How do I safely migrate Stripe subscriptions without billing drift?

Safely migrating Stripe subscriptions requires validating API version compatibility, applying idempotency controls during data transfer, and auditing webhook handlers to ensure billing lifecycle events sync correctly without dropping or duplicating customer records.

Does this Stripe payment guidance apply to Connect platform accounts?

No, this Stripe payment guidance specifically applies to non-Connect Stripe tasks. It covers Checkout, Payment Intents, subscriptions, Customer Portal, invoicing, and webhook debugging for standard Stripe integrations rather than Connect platform workflows.

When do I need idempotency controls in my Stripe checkout workflow?

You need idempotency controls in a Stripe checkout workflow whenever API requests might retry due to network failures. Applying idempotency keys to Payment Intents and subscription creation prevents duplicate charges and ensures production-safe payment lifecycle management.