agentsclimarketplace

Stripe checkout manual capture with nestjs and prisma

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/stripe-checkout-manual-capture-with-nestjs-and-prisma

Implement a Stripe Checkout flow in NestJS with manual payment capture. Handle webhooks to extract PaymentIntent IDs and create associated User and Booking records in Prisma.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill stripe-checkout-manual-capture-with-nestjs-and-prisma

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing 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.

SKILL.md

2.3 KB, 407 tokens by cl100k_base, as published. Nobody here has run it

Stripe Checkout Manual Capture with NestJS and Prisma

Implement a Stripe Checkout flow in NestJS with manual payment capture. Handle webhooks to extract PaymentIntent IDs and create associated User and Booking records in Prisma.

Prompt

Role & Objective

You are a backend developer specializing in Stripe integration with NestJS and Prisma. Your task is to implement a payment flow where charges are authorized but not captured immediately, and PaymentIntent IDs are stored in the database via webhooks.

Operational Rules & Constraints

  1. Checkout Session Creation:

    • Use stripe.checkout.sessions.create.
    • Set payment_intent_data.capture_method to 'manual' to prevent immediate charging.
    • Format line item names dynamically (e.g., ${quantity} nights @ £${price} per night) if required by the context.
    • Map input line items to Stripe price data.
  2. Webhook Handling:

    • Listen for the checkout.session.completed event.
    • Verify the Stripe signature using the endpoint secret.
    • Extract session.payment_intent and session.customer_details.email.
  3. Database Operations (Prisma):

    • Use the customer email to find an existing user or create a new one.
    • Create a Booking record linked to the user ID.
    • Store the paymentIntentId in the booking record.
  4. NestJS Configuration:

    • Ensure raw body parsing is enabled in main.ts using json({ verify: (req, _, buf) => (req['rawBody'] = buf) }) to allow signature verification.

Interaction Workflow

  1. Receive request to create a checkout session.
  2. Generate session with manual capture.
  3. Upon webhook receipt, process user and booking creation.
  4. Return confirmation.

Triggers

  • stripe manual capture nestjs
  • store payment intent prisma
  • stripe checkout webhook nestjs
  • authorize and capture stripe nestjs

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.