Install
Quick install
npx skills add https://github.com/stripe/ai/tree/main/skills/upgrade-stripenpx skills add stripe/ai --skill upgrade-stripe --agent claude-codenpx skills add stripe/ai --skill upgrade-stripe --agent cursornpx skills add stripe/ai --skill upgrade-stripe --agent codexnpx skills add stripe/ai --skill upgrade-stripe --agent opencodenpx skills add stripe/ai --skill upgrade-stripe --agent github-copilotnpx skills add stripe/ai --skill upgrade-stripe --agent windsurfMore install options
Shorthand — useful for multi-skill repos:
npx skills add stripe/ai --skill upgrade-stripeManual — clone the repo and drop the folder into your agent's skills directory:
git clone https://github.com/stripe/ai.gitcp -r ai/skills/upgrade-stripe ~/.claude/skills/upgrade-stripe
Guide for upgrading Stripe API versions and SDKs
upgrade-stripeby Stripe
Guide for upgrading Stripe API versions and SDKsnpx skills add https://github.com/stripe/ai --skill upgrade-stripeDownload ZIPGitHubThe latest Stripe API version is 2026-05-27.dahlia - use this version when upgrading unless the user specifies a different target version.
Upgrading Stripe Versions
This guide covers upgrading Stripe API versions, server-side SDKs, Stripe.js, and mobile SDKs.
Understanding Stripe API Versioning
Stripe uses date-based API versions (e.g., 2026-05-27.dahlia, 2025-08-27.basil, 2024-12-18.acacia). Your account’s API version determines request/response behavior.
Types of Changes
Backward-Compatible Changes (don’t require code updates):
- New API resources
- New optional request parameters
- New properties in existing responses
- Changes to opaque string lengths (e.g., object IDs)
- New webhook event types
Breaking Changes (require code updates):
- Field renames or removals
- Behavioral modifications
- Removed endpoints or parameters
Review the API Changelog for all changes between versions.
Server-Side SDK Versioning
See SDK Version Management for details.
Dynamically-Typed Languages (Ruby, Python, PHP, Node.js)
These SDKs offer flexible version control:
Global Configuration:
`import stripe
stripe.api_version = '2026-05-27.dahlia'
`
`Stripe.api_version = '2026-05-27.dahlia'
`
`const stripe = require('stripe')('sk_test_xxx', {
apiVersion: '2026-05-27.dahlia'
});
`
Per-Request Override:
`stripe.Customer.create(
email="[email protected]",
stripe_version='2026-05-27.dahlia'
)
`
Strongly-Typed Languages (Java, Go, .NET)
These use a fixed API version matching the SDK release date. Don’t set a different API version for strongly-typed languages because response objects might not match the strong types in the SDK. Instead, update the SDK to target a new API version.
Best Practice
Always specify the API version you’re integrating against in your code instead of relying on your account’s default API version:
`// Good: Explicit version
const stripe = require('stripe')('sk_test_xxx', {
apiVersion: '2026-05-27.dahlia'
});
// Avoid: Relying on account default
const stripe = require('stripe')('sk_test_xxx');
`
Stripe.js Versioning
See Stripe.js Versioning for details.
Stripe.js uses an evergreen model with major releases (Acacia, Basil, Clover, Dahlia) on a biannual basis.
Loading Versioned Stripe.js
Via Script Tag:
`<script src="https://js.stripe.com/dahlia/stripe.js"></script>
`
Via npm:
`npm install @stripe/stripe-js
`
Major npm versions correspond to specific Stripe.js versions.
API Version Pairing
Each Stripe.js version automatically pairs with its corresponding API version. For instance:
- Dahlia Stripe.js uses
2026-05-27.dahliaAPI
- Acacia Stripe.js uses
2024-12-18.acaciaAPI
You can’t override this association.
Migrating from v3
- Identify your current API version in code
- Review the changelog for relevant changes
- Consider gradually updating your API version before switching Stripe.js versions
- Stripe continues supporting v3 indefinitely
Mobile SDK Versioning
See Mobile SDK Versioning for details.
iOS and Android SDKs
Both platforms follow semantic versioning (MAJOR.MINOR.PATCH):
- MAJOR: Breaking API changes
- MINOR: New functionality (backward-compatible)
- PATCH: Bug fixes (backward-compatible)
New features and fixes release only on the latest major version. Upgrade regularly to access improvements.
React Native SDK
Uses a different model (0.x.y schema):
- Minor version changes (x): Breaking changes AND new features
- Patch updates (y): Critical bug fixes only
Backend Compatibility
All mobile SDKs work with any Stripe API version you use on your backend unless documentation specifies otherwise.
Upgrade Checklist
- Review the API Changelog for changes between your current and target versions
- Check Upgrades Guide for migration guidance
- Update server-side SDK package version (e.g.,
npm update stripe,pip install --upgrade stripe)
- Update the
apiVersionparameter in your Stripe client initialization
- Test your integration against the new API version using the
Stripe-Versionheader
- Update webhook handlers to handle new event structures
- Update Stripe.js script tag or npm package version if needed
- Update mobile SDK versions in your package manager if needed
- Store Stripe object IDs in databases that accommodate up to 255 characters (case-sensitive collation)
Testing API Version Changes
Use the Stripe-Version header to test your code against a new version without changing your default:
`curl https://api.stripe.com/v1/customers \
-u sk_test_xxx: \
-H "Stripe-Version: 2026-05-27.dahlia"
`
Or in code:
`const stripe = require('stripe')('sk_test_xxx', {
apiVersion: '2026-05-27.dahlia' // Test with new version
});
`
Important Notes
- Your webhook listener should handle unfamiliar event types gracefully
- Test webhooks with the new version structure before upgrading
- Breaking changes are tagged by affected product areas (Payments, Billing, Connect, etc.)
- Multiple API versions coexist simultaneously, enabling staged adoption
More skills from Stripe
stripe-best-practicesby StripeBest practices for building Stripe integrations. Use when implementing payment processing, checkout flows, subscriptions, webhooks, Connect platforms, or any Stripe API integration.---
Source: https://github.com/stripe/ai/tree/main/skills/upgrade-stripe
Author: Stripe
Discovered via: mcpservers.org
SKILL.md source
---
name: upgrade-stripe
description: Guide for upgrading Stripe API versions and SDKs
---
# upgrade-stripe
Guide for upgrading Stripe API versions and SDKs
# upgrade-stripeby Stripe
Guide for upgrading Stripe API versions and SDKs
`npx skills add https://github.com/stripe/ai --skill upgrade-stripe`Download ZIPGitHubThe latest Stripe API version is 2026-05-27.dahlia - use this version when upgrading unless the user specifies a different target version.
## Upgrading Stripe Versions
This guide covers upgrading Stripe API versions, server-side SDKs, Stripe.js, and mobile SDKs.
## Understanding Stripe API Versioning
Stripe uses date-based API versions (e.g., `2026-05-27.dahlia`, `2025-08-27.basil`, `2024-12-18.acacia`). Your account’s API version determines request/response behavior.
### Types of Changes
Backward-Compatible Changes (don’t require code updates):
* New API resources
* New optional request parameters
* New properties in existing responses
* Changes to opaque string lengths (e.g., object IDs)
* New webhook event types
Breaking Changes (require code updates):
* Field renames or removals
* Behavioral modifications
* Removed endpoints or parameters
Review the API Changelog for all changes between versions.
## Server-Side SDK Versioning
See SDK Version Management for details.
### Dynamically-Typed Languages (Ruby, Python, PHP, Node.js)
These SDKs offer flexible version control:
Global Configuration:
```
`import stripe
stripe.api_version = '2026-05-27.dahlia'
`
```
```
`Stripe.api_version = '2026-05-27.dahlia'
`
```
```
`const stripe = require('stripe')('sk_test_xxx', {
apiVersion: '2026-05-27.dahlia'
});
`
```
Per-Request Override:
```
`stripe.Customer.create(
email="[email protected]",
stripe_version='2026-05-27.dahlia'
)
`
```
### Strongly-Typed Languages (Java, Go, .NET)
These use a fixed API version matching the SDK release date. Don’t set a different API version for strongly-typed languages because response objects might not match the strong types in the SDK. Instead, update the SDK to target a new API version.
### Best Practice
Always specify the API version you’re integrating against in your code instead of relying on your account’s default API version:
```
`// Good: Explicit version
const stripe = require('stripe')('sk_test_xxx', {
apiVersion: '2026-05-27.dahlia'
});
// Avoid: Relying on account default
const stripe = require('stripe')('sk_test_xxx');
`
```
## Stripe.js Versioning
See Stripe.js Versioning for details.
Stripe.js uses an evergreen model with major releases (Acacia, Basil, Clover, Dahlia) on a biannual basis.
### Loading Versioned Stripe.js
Via Script Tag:
```
`<script src="https://js.stripe.com/dahlia/stripe.js"></script>
`
```
Via npm:
```
`npm install @stripe/stripe-js
`
```
Major npm versions correspond to specific Stripe.js versions.
### API Version Pairing
Each Stripe.js version automatically pairs with its corresponding API version. For instance:
* Dahlia Stripe.js uses `2026-05-27.dahlia` API
* Acacia Stripe.js uses `2024-12-18.acacia` API
You can’t override this association.
### Migrating from v3
* Identify your current API version in code
* Review the changelog for relevant changes
* Consider gradually updating your API version before switching Stripe.js versions
* Stripe continues supporting v3 indefinitely
## Mobile SDK Versioning
See Mobile SDK Versioning for details.
### iOS and Android SDKs
Both platforms follow semantic versioning (MAJOR.MINOR.PATCH):
* MAJOR: Breaking API changes
* MINOR: New functionality (backward-compatible)
* PATCH: Bug fixes (backward-compatible)
New features and fixes release only on the latest major version. Upgrade regularly to access improvements.
### React Native SDK
Uses a different model (0.x.y schema):
* Minor version changes (x): Breaking changes AND new features
* Patch updates (y): Critical bug fixes only
### Backend Compatibility
All mobile SDKs work with any Stripe API version you use on your backend unless documentation specifies otherwise.
## Upgrade Checklist
* Review the API Changelog for changes between your current and target versions
* Check Upgrades Guide for migration guidance
* Update server-side SDK package version (e.g., `npm update stripe`, `pip install --upgrade stripe`)
* Update the `apiVersion` parameter in your Stripe client initialization
* Test your integration against the new API version using the `Stripe-Version` header
* Update webhook handlers to handle new event structures
* Update Stripe.js script tag or npm package version if needed
* Update mobile SDK versions in your package manager if needed
* Store Stripe object IDs in databases that accommodate up to 255 characters (case-sensitive collation)
## Testing API Version Changes
Use the `Stripe-Version` header to test your code against a new version without changing your default:
```
`curl https://api.stripe.com/v1/customers \
-u sk_test_xxx: \
-H "Stripe-Version: 2026-05-27.dahlia"
`
```
Or in code:
```
`const stripe = require('stripe')('sk_test_xxx', {
apiVersion: '2026-05-27.dahlia' // Test with new version
});
`
```
## Important Notes
* Your webhook listener should handle unfamiliar event types gracefully
* Test webhooks with the new version structure before upgrading
* Breaking changes are tagged by affected product areas (Payments, Billing, Connect, etc.)
* Multiple API versions coexist simultaneously, enabling staged adoption
## More skills from Stripe
stripe-best-practicesby StripeBest practices for building Stripe integrations. Use when implementing payment processing, checkout flows, subscriptions, webhooks, Connect platforms, or any Stripe API integration.
---
**Source**: https://github.com/stripe/ai/tree/main/skills/upgrade-stripe
**Author**: Stripe
**Discovered via**: mcpservers.org
Related skills 6
azure-cost-optimization
Identify Azure cost savings from usage and spending data. USE FOR: optimize Azure costs, reduce Azure spending/expenses, analyze Azure costs, find cost savings, generate cost optimization report, identify orphaned resources to delete, rightsize VMs, reduce waste, optimize Redis costs, optimize storage costs, AKS cost analysis add-on, namespace cost, cost spike, anomaly, budget alert, AKS cost visibility. DO NOT USE FOR: deploying resources (use azure-deploy), general Azure diagnostics (use az...
azure-cost
Unified Azure cost management: query historical costs, forecast future spending, and optimize to reduce waste. WHEN: "Azure costs", "Azure spending", "Azure bill", "cost breakdown", "cost by service", "cost by resource", "how much am I spending", "show my bill", "monthly cost summary", "cost trends", "top cost drivers", "actual cost", "amortized cost", "forecast spending", "projected costs", "estimate bill", "future costs", "budget forecast", "end of month costs", "how much will I spend", "op...
gpt-image-2
Generate images with GPT Image 2 (ChatGPT Images 2.0) inside Claude Code, using your existing ChatGPT Plus or Pro subscription — no separate OpenAI access, no per-image billing. Supports text-to-image, image-to-image editing, style transfer, and multi-reference composition via the local Codex CLI. Triggers on "gpt image 2", "gpt-image-2", "ChatGPT Images 2.0", "image 2", or any explicit ask to generate or edit an image through the user's ChatGPT plan.
image-inpainting
Mask-driven image inpainting on RunComfy via the `runcomfy` CLI. Routes to Tongyi MAI Z-Image Turbo Inpainting (the dedicated inpainting endpoint with mask, strength, and control-scale) and to identity-preserving edit models (Nano Banana 2 Edit, GPT Image 2 Edit, FLUX Kontext Pro) when a mask isn't available and the region must be described instead. Use for object removal, watermark removal, region replacement, blemish cleanup, and any controlled local edit where a binary mask defines the tar...
high-end-visual-design
Teaches the AI to design like a high-end agency. Defines the exact fonts, spacing, shadows, card structures, and animations that make a website feel expensive. Blocks all the common defaults that make AI designs look cheap or generic.
industrial-brutalist-ui
Raw mechanical interfaces fusing Swiss typographic print with military terminal aesthetics. Rigid grids, extreme type scale contrast, utilitarian color, analog degradation effects. For data-heavy dashboards, portfolios, or editorial sites that need to feel like declassified blueprints.