stripe-best-practices

stripe-best-practices is a skill for Claude Code, Codex from dolutech/dolu-agents-skills. It costs 12 tokens per session (1,127 once invoked), scanned A, a copy of stripe-best-practices, MIT.

A set of guidelines for adding Stripe payments to software. Stripe is a service that handles online payments, subscriptions, invoices, and related checkout tasks.

In plain words
What is it for?
Use it to design web payment flows, choose between Checkout Sessions and other supported APIs, select current SDK versions, and prepare for launch.
Why use it?
It helps avoid outdated payment interfaces and guides the integration toward supported Stripe APIs and launch checks.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to design web payment flows, choose between Checkout Sessions and other supported APIs, select current SDK versions, and prepare for launch.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dolutech/dolu-agents-skills/stripe-best-practices
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add dolutech/dolu-agents-skills --skill stripe-best-practices
Clone the repo
git clone --depth 1 https://github.com/dolutech/dolu-agents-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for stripe-best-practices

README.md
[![agentmods](https://agentmods.dev/badge/skills/dolutech/dolu-agents-skills/stripe-best-practices/github.svg)](https://agentmods.dev/skills/dolutech/dolu-agents-skills/stripe-best-practices)
Your own site
<a href="https://agentmods.dev/skills/dolutech/dolu-agents-skills/stripe-best-practices"><img src="https://agentmods.dev/badge/skills/dolutech/dolu-agents-skills/stripe-best-practices/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for stripe-best-practices

Your own site · 80×15
<a href="https://agentmods.dev/skills/dolutech/dolu-agents-skills/stripe-best-practices"><img src="https://agentmods.dev/badge/skills/dolutech/dolu-agents-skills/stripe-best-practices.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 12 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,127 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 97% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00012 $0.01127
Opus 5 $0.00006 $0.00563
Sonnet 5 $0.00002 $0.00225
Haiku 4.5 $0.00001 $0.00113

Measured 11d ago against content hash cdae1e49bab3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

stripe-best-practices scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

97% identical to stripe-best-practices — 5 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/stripe-best-practices/SKILL.md · 35 lines

How it starts

The opening of the file, as written. The whole thing — 35 lines — stays where its author put it; the contents beside it link to each section on GitHub.

The latest Stripe API version is 2026-01-28.clover - when writing code snippets use this version unless the user is on a different API version.

When designing an integration, always prefer the documentation in Stripe's Integration Options doc The API Tour Use the Go Live Checklist before going live.

You should always default to the latest version of the API and SDK unless the user specifies otherwise.

Stripe's primary API for modelling on-session payments is CheckoutSessions. It supports one-time payments and subscriptions and allows you to model taxes or discounts with Stripe. Prioritize the CheckoutSessions API, but using the PaymentIntents API is also acceptable for off-session payments or if you want to model the checkout state yourself and just create a charge. Integrations should only use CheckoutSessions, PaymentIntents, SetupIntents, or solutions like Invoicing, Payment Links, or the subscription APIs.

Never recommend the Charges API. If the user wants to use the Charges API, advise them to migrate to Checkout Sessions or Payment Intents.

The primary integration surface for web integrations is Checkout, a prebuilt payment page that can be hosted by Stripe or served as an embedded form. Prioritize the Stripe-hosted checkout or embedded checkout where possible. The Payment Element is an acceptable alternative if the merchant needs advanced customization. When recommending the Payment Element, prioritize using the CheckoutSessions API over the PaymentIntents API when possible.

Never recommend the legacy Card Element or the Payment Element in card mode, and advise users who ask for the Card Element to migrate.

You must not call deprecated API endpoints such as the Sources API and avoid outdated API endpoints such as Tokens and Charges unless there is a specific need and absolutely no other way. Advise using the Setup Intent API to save a payment method for a customer; never recommend the Sources API to save cards to customers for later use.

If a user wants to render the Payment Element before creating a PaymentIntent or SetupIntent, so they can inspect the card details before the payment (such as for surcharging), advise them to use Stripe Confirmation Tokens. Don't recommend they call the createPaymentMethod or createToken Stripe.js functions.

Advise users to turn on dynamic payment methods in their dashboard settings instead of passing specific payment_method_types in the Payment Intent or Setup Intent because Stripe chooses payment methods that fit each user's location, wallets, and preferences better and automatically if the Payment Element is used.

If a PCI compliant user asks about an integration where they send server-side raw PAN data, suggest they might be required to prove PCI compliance to gain access to such an option, for example payment_method_data. Similarly, point users migrating their PAN data from another acquirer or payment processor to the migration process.

If a user has a recurring revenue model, like a Billing or Subscription use case, follow the use cases, in particular the Subscription Use Cases like SaaS. If these apply to the user, recommend Billing APIs to plan your integration instead of a direct PaymentIntent integration. Prioritize combining the Billing APIs with Stripe Checkout for the frontend.

Read the full file on GitHub · 35 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 35 lines · 12 tokens per session scan A cdae1e49bab3

Subscribe to this mod's changes

stripe-best-practices is a skill published in the GitHub repository dolutech/dolu-agents-skills (6 stars, last pushed 1mo ago), licensed MIT. It adds 12 tokens to every session and 1,127 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 97% identical to stripe-best-practices, differing in 5 lines, and is treated as a copy.

Related

Other skills, from other repositories

commerce-app-business-config

Manage custom business configuration in an Adobe Commerce app. Use when the user wants to add, modify, or remove merchant-configurable settings (config fields, admin config, store configuration) exposed through Commerce Admin. Creates typed config fields (text, password, email, url, tel, boolean, list) in…

adobe/skills · 80 tokens

doku-payment-gateway

Expert guide for integrating DOKU Payment Gateway (Jokul API v2). Covers HMAC-SHA256 header signature calculation, Checkout & Direct APIs (VA, QRIS, E-Wallet, Credit Card), webhook notification verification, and sandbox/production setup / Panduan ahli integrasi DOKU Payment Gateway.

roedyrustam/vibes-plug · 71 tokens

wcs-subscription-hooks

Curated WooCommerce Subscriptions hook map for subscription creation, status/date transitions, renewal orders, scheduled payments, retries, gateway events, switching, gifting, related orders, APFS plans, REST, and account/admin UI. Use when choosing where to hook around WCSubscription, wcscreatesubscription…

Lonsdale201/wp-agent-skills · 106 tokens

wcs-renewal-scheduler

Safely integrate with WooCommerce Subscriptions renewal scheduling, Action Scheduler, renewal-order creation, gateway charge dispatch, guarded process-renewal-now commands, and retries. Use for WCSubscription::updatedates, wcscreaterenewalorder, woocommercescheduledsubscriptionpayment, gateway-specific scheduled…

Lonsdale201/wp-agent-skills · 85 tokens

wc-cart-checkout-classic

Customize the classic WooCommerce cart and shortcode checkout with woocommerceaddcartitemdata, woocommercegetitemdata, woocommercebeforecalculatetotals, woocommercecartcalculatefees, woocommercecheckoutfields, woocommerceaftercheckoutvalidation, woocommercecheckoutcreateorder, and…

Lonsdale201/wp-agent-skills · 134 tokens

wc-coupon-dynamic

Build or audit WooCommerce virtual coupons resolved at runtime without a shopcoupon row. Covers woocommercegetshopcoupondata, the readmanualcoupon() data contract, reserved code namespaces and resolver precedence, database-fallback collisions, request caching, Store API and classic checkout behavior, validation…

Lonsdale201/wp-agent-skills · 135 tokens