Stripe handler
全球最大的 Claude Code 技能聚合库 · 收录 3900+ 来自 12+ 来源的技能,提供在线搜索与趋势分析看板 / The world's largest Claude Code skill aggregation hub — 3900+ skills from 12+ sources with online search and trend dashboard
npx -y skills add bg-szy/TOP-SKILLS --skill stripe-handlerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Handle Stripe payments, custom checkouts, and webhook fulfillment outside of standard plans/credits.
SKILL.md
3.7 KB, as published. Nobody here has run it
Stripe Handler
Use this skill when you need to implement payment logic using Stripe, specifically for use cases that are NOT standard SaaS subscription plans or standard Credit packages (which are handled by plans-handler and credits-handler respectively).
When to use
- Implementing "Buy One-time Product" flows (e.g., Courses, Digital Goods).
- Creating custom "Service" payments.
- Handling
checkout.session.completedfor custom metadata. - Customizing
src/app/api/webhooks/stripe/route.tsfor non-standard events. - Offloading heavy webhook processing to background tasks (via Inngest).
Process
1. Identify Payment Type
Before writing code, determine the nature of the payment:
- Is it a Subscription Plan? -> Use
plans-handler. - Is it a Credit Package? -> Use
credits-handler. - Is it a Custom One-time or Recurring Product? -> Continue with this skill.
2. Create Checkout Session (API/Action)
You need a server-side endpoint to create the Stripe Checkout Session.
- File: Create a new route (e.g.,
src/app/api/app/orders/create/route.ts) or Server Action. - Import:
import stripe from "@/lib/stripe"; - Metadata: CRITICAL. Always attach
metadatato the session to identify the purchase type in the webhook.metadata: { type: "my_custom_feature", userId: user.id, customId: "..." } - URLs: Use the standard success/error pages or custom ones if needed.
- Success:
${process.env.NEXT_PUBLIC_APP_URL}/app/subscribe/success?session_id={CHECKOUT_SESSION_ID} - Error:
${process.env.NEXT_PUBLIC_APP_URL}/app/subscribe/error
- Success:
3. Handle Webhook Fulfillment
All Stripe events go to src/app/api/webhooks/stripe/route.ts.
- File:
src/app/api/webhooks/stripe/route.ts - Locate:
onCheckoutSessionCompleted(for one-time) orhandleOutsidePlanManagementProductInvoicePaid(for invoices). - Implement:
- Extract
metadatafrom the event object. - Check if
metadata.typematches your custom feature. - If yes: Run your fulfillment logic.
- Simple Logic: Update DB directly.
- Heavy Logic: Dispatch an Inngest event to handle it in the background.
- If no: Let the function fall through to standard plan/credit handling.
- Extract
4. Background Processing (Inngest)
Recommended for production: If your fulfillment logic involves multiple DB calls, external APIs, or could timeout (Stripe expects a response in < 3s):
- Use
inngest-handlerto create a new function. - In the webhook, just dispatch the event:
await inngest.send({ name: "app/payment.custom_succeeded", data: { sessionId: object.id, metadata } }); - Handle the actual logic in
src/inngest/functions/....
5. Database Updates
- If the purchase grants access to a resource, update the corresponding schema (e.g.,
orders,courses). - Ensure the fulfillment is idempotent (handle duplicate webhook events gracefully).
6. Frontend Integration
- Use a simple Button or Form to call your API/Action.
- Redirect the user to the returned
url(Stripe Checkout).
Best Practices
- Idempotency: Webhooks can fire multiple times. Ensure your logic checks if the order is already fulfilled.
- Metadata: Rely on metadata, not just product IDs, for cleaner logic separation.
- Timeouts: Stripe webhooks must respond quickly. Use Inngest for anything taking > 2 seconds.
- Testing: Use
stripe listento test webhooks locally.
Reference
See reference.md for code snippets on creating sessions, handling webhooks, and using Inngest.