[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-upgrade-stripe":3,"mdc--85j2g3-key":36,"related-org-openai-upgrade-stripe":1324,"related-repo-openai-upgrade-stripe":1531},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"upgrade-stripe","upgrade Stripe API versions and SDKs","Guide for upgrading Stripe API versions and SDKs",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Migration","migration","tag",{"name":17,"slug":18,"type":15},"Payments","payments",{"name":20,"slug":21,"type":15},"Engineering","engineering",{"name":23,"slug":24,"type":15},"Stripe","stripe",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-04-06T18:42:52.350433",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fstripe\u002Fskills\u002Fupgrade-stripe","---\nname: upgrade-stripe\ndescription: Guide for upgrading Stripe API versions and SDKs\n---\n\nThe latest Stripe API version is 2026-02-25.clover - use this version when upgrading unless the user specifies a different target version.\n\n# Upgrading Stripe Versions\n\nThis guide covers upgrading Stripe API versions, server-side SDKs, Stripe.js, and mobile SDKs.\n\n## Understanding Stripe API Versioning\n\nStripe uses date-based API versions (e.g., `2026-02-25.clover`, `2025-08-27.basil`, `2024-12-18.acacia`). Your account's API version determines request\u002Fresponse behavior.\n\n### Types of Changes\n\n**Backward-Compatible Changes** (do not require code updates):\n- New API resources\n- New optional request parameters\n- New properties in existing responses\n- Changes to opaque string lengths (e.g., object IDs)\n- New webhook event types\n\n**Breaking Changes** (require code updates):\n- Field renames or removals\n- Behavioral modifications\n- Removed endpoints or parameters\n\nReview the [API Changelog](https:\u002F\u002Fdocs.stripe.com\u002Fchangelog.md) for all changes between versions.\n\n## Server-Side SDK Versioning\n\nSee [SDK Version Management](https:\u002F\u002Fdocs.stripe.com\u002Fsdks\u002Fset-version.md) for details.\n\n### Dynamically-Typed Languages (Ruby, Python, PHP, Node.js)\n\nThese SDKs offer flexible version control:\n\n**Global Configuration:**\n```python\nimport stripe\nstripe.api_version = '2026-02-25.clover'\n```\n\n```ruby\nStripe.api_version = '2026-02-25.clover'\n```\n\n```javascript\nconst stripe = require('stripe')('sk_test_xxx', {\n  apiVersion: '2026-02-25.clover'\n});\n```\n\n**Per-Request Override:**\n```python\nstripe.Customer.create(\n  email=\"customer@example.com\",\n  stripe_version='2026-02-25.clover'\n)\n```\n\n### Strongly-Typed Languages (Java, Go, .NET)\n\nThese use a fixed API version matching the SDK release date. Do not 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.\n\n### Best Practice\n\nAlways specify the API version you're integrating against in your code instead of relying on your account's default API version:\n\n```javascript\n\u002F\u002F Good: Explicit version\nconst stripe = require('stripe')('sk_test_xxx', {\n  apiVersion: '2026-02-25.clover'\n});\n\n\u002F\u002F Avoid: Relying on account default\nconst stripe = require('stripe')('sk_test_xxx');\n```\n\n## Stripe.js Versioning\n\nSee [Stripe.js Versioning](https:\u002F\u002Fdocs.stripe.com\u002Fsdks\u002Fstripejs-versioning.md) for details.\n\nStripe.js uses an evergreen model with major releases (Acacia, Basil, Clover) on a biannual basis.\n\n### Loading Versioned Stripe.js\n\n**Via Script Tag:**\n```html\n\u003Cscript src=\"https:\u002F\u002Fjs.stripe.com\u002Fclover\u002Fstripe.js\">\u003C\u002Fscript>\n```\n\n**Via npm:**\n```bash\nnpm install @stripe\u002Fstripe-js\n```\n\nMajor npm versions correspond to specific Stripe.js versions.\n\n### API Version Pairing\n\nEach Stripe.js version automatically pairs with its corresponding API version. For instance:\n- Clover Stripe.js uses `2026-02-25.clover` API\n- Acacia Stripe.js uses `2024-12-18.acacia` API\n\nYou cannot override this association.\n\n### Migrating from v3\n\n1. Identify your current API version in code\n2. Review the changelog for relevant changes\n3. Consider gradually updating your API version before switching Stripe.js versions\n4. Stripe continues supporting v3 indefinitely\n\n## Mobile SDK Versioning\n\nSee [Mobile SDK Versioning](https:\u002F\u002Fdocs.stripe.com\u002Fsdks\u002Fmobile-sdk-versioning.md) for details.\n\n### iOS and Android SDKs\n\nBoth platforms follow **semantic versioning** (MAJOR.MINOR.PATCH):\n- **MAJOR**: Breaking API changes\n- **MINOR**: New functionality (backward-compatible)\n- **PATCH**: Bug fixes (backward-compatible)\n\nNew features and fixes release only on the latest major version. Upgrade regularly to access improvements.\n\n### React Native SDK\n\nUses a different model (0.x.y schema):\n- **Minor version changes** (x): Breaking changes AND new features\n- **Patch updates** (y): Critical bug fixes only\n\n### Backend Compatibility\n\nAll mobile SDKs work with any Stripe API version you use on your backend unless documentation specifies otherwise.\n\n## Upgrade Checklist\n\n1. Review the [API Changelog](https:\u002F\u002Fdocs.stripe.com\u002Fchangelog.md) for changes between your current and target versions\n2. Check [Upgrades Guide](https:\u002F\u002Fdocs.stripe.com\u002Fupgrades.md) for migration guidance\n3. Update server-side SDK package version (e.g., `npm update stripe`, `pip install --upgrade stripe`)\n4. Update the `apiVersion` parameter in your Stripe client initialization\n5. Test your integration against the new API version using the `Stripe-Version` header\n6. Update webhook handlers to handle new event structures\n7. Update Stripe.js script tag or npm package version if needed\n8. Update mobile SDK versions in your package manager if needed\n9. Store Stripe object IDs in databases that accommodate up to 255 characters (case-sensitive collation)\n\n## Testing API Version Changes\n\nUse the `Stripe-Version` header to test your code against a new version without changing your default:\n\n```bash\ncurl https:\u002F\u002Fapi.stripe.com\u002Fv1\u002Fcustomers \\\n  -u sk_test_xxx: \\\n  -H \"Stripe-Version: 2026-02-25.clover\"\n```\n\nOr in code:\n\n```javascript\nconst stripe = require('stripe')('sk_test_xxx', {\n  apiVersion: '2026-02-25.clover'  \u002F\u002F Test with new version\n});\n```\n\n## Important Notes\n\n- Your webhook listener should handle unfamiliar event types gracefully\n- Test webhooks with the new version structure before upgrading\n- Breaking changes are tagged by affected product areas (Payments, Billing, Connect, etc.)\n- Multiple API versions coexist simultaneously, enabling staged adoption\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,49,56,61,68,97,104,115,145,155,173,189,195,209,215,220,228,259,275,405,413,453,459,464,470,475,667,673,684,689,695,703,762,770,798,803,809,814,840,845,851,875,881,892,898,910,943,948,954,959,982,988,993,999,1092,1098,1110,1175,1180,1289,1295,1318],{"type":42,"tag":43,"props":44,"children":45},"element","p",{},[46],{"type":47,"value":48},"text","The latest Stripe API version is 2026-02-25.clover - use this version when upgrading unless the user specifies a different target version.",{"type":42,"tag":50,"props":51,"children":53},"h1",{"id":52},"upgrading-stripe-versions",[54],{"type":47,"value":55},"Upgrading Stripe Versions",{"type":42,"tag":43,"props":57,"children":58},{},[59],{"type":47,"value":60},"This guide covers upgrading Stripe API versions, server-side SDKs, Stripe.js, and mobile SDKs.",{"type":42,"tag":62,"props":63,"children":65},"h2",{"id":64},"understanding-stripe-api-versioning",[66],{"type":47,"value":67},"Understanding Stripe API Versioning",{"type":42,"tag":43,"props":69,"children":70},{},[71,73,80,82,88,89,95],{"type":47,"value":72},"Stripe uses date-based API versions (e.g., ",{"type":42,"tag":74,"props":75,"children":77},"code",{"className":76},[],[78],{"type":47,"value":79},"2026-02-25.clover",{"type":47,"value":81},", ",{"type":42,"tag":74,"props":83,"children":85},{"className":84},[],[86],{"type":47,"value":87},"2025-08-27.basil",{"type":47,"value":81},{"type":42,"tag":74,"props":90,"children":92},{"className":91},[],[93],{"type":47,"value":94},"2024-12-18.acacia",{"type":47,"value":96},"). Your account's API version determines request\u002Fresponse behavior.",{"type":42,"tag":98,"props":99,"children":101},"h3",{"id":100},"types-of-changes",[102],{"type":47,"value":103},"Types of Changes",{"type":42,"tag":43,"props":105,"children":106},{},[107,113],{"type":42,"tag":108,"props":109,"children":110},"strong",{},[111],{"type":47,"value":112},"Backward-Compatible Changes",{"type":47,"value":114}," (do not require code updates):",{"type":42,"tag":116,"props":117,"children":118},"ul",{},[119,125,130,135,140],{"type":42,"tag":120,"props":121,"children":122},"li",{},[123],{"type":47,"value":124},"New API resources",{"type":42,"tag":120,"props":126,"children":127},{},[128],{"type":47,"value":129},"New optional request parameters",{"type":42,"tag":120,"props":131,"children":132},{},[133],{"type":47,"value":134},"New properties in existing responses",{"type":42,"tag":120,"props":136,"children":137},{},[138],{"type":47,"value":139},"Changes to opaque string lengths (e.g., object IDs)",{"type":42,"tag":120,"props":141,"children":142},{},[143],{"type":47,"value":144},"New webhook event types",{"type":42,"tag":43,"props":146,"children":147},{},[148,153],{"type":42,"tag":108,"props":149,"children":150},{},[151],{"type":47,"value":152},"Breaking Changes",{"type":47,"value":154}," (require code updates):",{"type":42,"tag":116,"props":156,"children":157},{},[158,163,168],{"type":42,"tag":120,"props":159,"children":160},{},[161],{"type":47,"value":162},"Field renames or removals",{"type":42,"tag":120,"props":164,"children":165},{},[166],{"type":47,"value":167},"Behavioral modifications",{"type":42,"tag":120,"props":169,"children":170},{},[171],{"type":47,"value":172},"Removed endpoints or parameters",{"type":42,"tag":43,"props":174,"children":175},{},[176,178,187],{"type":47,"value":177},"Review the ",{"type":42,"tag":179,"props":180,"children":184},"a",{"href":181,"rel":182},"https:\u002F\u002Fdocs.stripe.com\u002Fchangelog.md",[183],"nofollow",[185],{"type":47,"value":186},"API Changelog",{"type":47,"value":188}," for all changes between versions.",{"type":42,"tag":62,"props":190,"children":192},{"id":191},"server-side-sdk-versioning",[193],{"type":47,"value":194},"Server-Side SDK Versioning",{"type":42,"tag":43,"props":196,"children":197},{},[198,200,207],{"type":47,"value":199},"See ",{"type":42,"tag":179,"props":201,"children":204},{"href":202,"rel":203},"https:\u002F\u002Fdocs.stripe.com\u002Fsdks\u002Fset-version.md",[183],[205],{"type":47,"value":206},"SDK Version Management",{"type":47,"value":208}," for details.",{"type":42,"tag":98,"props":210,"children":212},{"id":211},"dynamically-typed-languages-ruby-python-php-nodejs",[213],{"type":47,"value":214},"Dynamically-Typed Languages (Ruby, Python, PHP, Node.js)",{"type":42,"tag":43,"props":216,"children":217},{},[218],{"type":47,"value":219},"These SDKs offer flexible version control:",{"type":42,"tag":43,"props":221,"children":222},{},[223],{"type":42,"tag":108,"props":224,"children":225},{},[226],{"type":47,"value":227},"Global Configuration:",{"type":42,"tag":229,"props":230,"children":235},"pre",{"className":231,"code":232,"language":233,"meta":234,"style":234},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import stripe\nstripe.api_version = '2026-02-25.clover'\n","python","",[236],{"type":42,"tag":74,"props":237,"children":238},{"__ignoreMap":234},[239,250],{"type":42,"tag":240,"props":241,"children":244},"span",{"class":242,"line":243},"line",1,[245],{"type":42,"tag":240,"props":246,"children":247},{},[248],{"type":47,"value":249},"import stripe\n",{"type":42,"tag":240,"props":251,"children":253},{"class":242,"line":252},2,[254],{"type":42,"tag":240,"props":255,"children":256},{},[257],{"type":47,"value":258},"stripe.api_version = '2026-02-25.clover'\n",{"type":42,"tag":229,"props":260,"children":264},{"className":261,"code":262,"language":263,"meta":234,"style":234},"language-ruby shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","Stripe.api_version = '2026-02-25.clover'\n","ruby",[265],{"type":42,"tag":74,"props":266,"children":267},{"__ignoreMap":234},[268],{"type":42,"tag":240,"props":269,"children":270},{"class":242,"line":243},[271],{"type":42,"tag":240,"props":272,"children":273},{},[274],{"type":47,"value":262},{"type":42,"tag":229,"props":276,"children":280},{"className":277,"code":278,"language":279,"meta":234,"style":234},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","const stripe = require('stripe')('sk_test_xxx', {\n  apiVersion: '2026-02-25.clover'\n});\n","javascript",[281],{"type":42,"tag":74,"props":282,"children":283},{"__ignoreMap":234},[284,358,386],{"type":42,"tag":240,"props":285,"children":286},{"class":242,"line":243},[287,293,299,305,311,316,321,326,330,335,339,344,348,353],{"type":42,"tag":240,"props":288,"children":290},{"style":289},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[291],{"type":47,"value":292},"const",{"type":42,"tag":240,"props":294,"children":296},{"style":295},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[297],{"type":47,"value":298}," stripe ",{"type":42,"tag":240,"props":300,"children":302},{"style":301},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[303],{"type":47,"value":304},"=",{"type":42,"tag":240,"props":306,"children":308},{"style":307},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[309],{"type":47,"value":310}," require",{"type":42,"tag":240,"props":312,"children":313},{"style":295},[314],{"type":47,"value":315},"(",{"type":42,"tag":240,"props":317,"children":318},{"style":301},[319],{"type":47,"value":320},"'",{"type":42,"tag":240,"props":322,"children":324},{"style":323},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[325],{"type":47,"value":24},{"type":42,"tag":240,"props":327,"children":328},{"style":301},[329],{"type":47,"value":320},{"type":42,"tag":240,"props":331,"children":332},{"style":295},[333],{"type":47,"value":334},")(",{"type":42,"tag":240,"props":336,"children":337},{"style":301},[338],{"type":47,"value":320},{"type":42,"tag":240,"props":340,"children":341},{"style":323},[342],{"type":47,"value":343},"sk_test_xxx",{"type":42,"tag":240,"props":345,"children":346},{"style":301},[347],{"type":47,"value":320},{"type":42,"tag":240,"props":349,"children":350},{"style":301},[351],{"type":47,"value":352},",",{"type":42,"tag":240,"props":354,"children":355},{"style":301},[356],{"type":47,"value":357}," {\n",{"type":42,"tag":240,"props":359,"children":360},{"class":242,"line":252},[361,367,372,377,381],{"type":42,"tag":240,"props":362,"children":364},{"style":363},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[365],{"type":47,"value":366},"  apiVersion",{"type":42,"tag":240,"props":368,"children":369},{"style":301},[370],{"type":47,"value":371},":",{"type":42,"tag":240,"props":373,"children":374},{"style":301},[375],{"type":47,"value":376}," '",{"type":42,"tag":240,"props":378,"children":379},{"style":323},[380],{"type":47,"value":79},{"type":42,"tag":240,"props":382,"children":383},{"style":301},[384],{"type":47,"value":385},"'\n",{"type":42,"tag":240,"props":387,"children":389},{"class":242,"line":388},3,[390,395,400],{"type":42,"tag":240,"props":391,"children":392},{"style":301},[393],{"type":47,"value":394},"}",{"type":42,"tag":240,"props":396,"children":397},{"style":295},[398],{"type":47,"value":399},")",{"type":42,"tag":240,"props":401,"children":402},{"style":301},[403],{"type":47,"value":404},";\n",{"type":42,"tag":43,"props":406,"children":407},{},[408],{"type":42,"tag":108,"props":409,"children":410},{},[411],{"type":47,"value":412},"Per-Request Override:",{"type":42,"tag":229,"props":414,"children":416},{"className":231,"code":415,"language":233,"meta":234,"style":234},"stripe.Customer.create(\n  email=\"customer@example.com\",\n  stripe_version='2026-02-25.clover'\n)\n",[417],{"type":42,"tag":74,"props":418,"children":419},{"__ignoreMap":234},[420,428,436,444],{"type":42,"tag":240,"props":421,"children":422},{"class":242,"line":243},[423],{"type":42,"tag":240,"props":424,"children":425},{},[426],{"type":47,"value":427},"stripe.Customer.create(\n",{"type":42,"tag":240,"props":429,"children":430},{"class":242,"line":252},[431],{"type":42,"tag":240,"props":432,"children":433},{},[434],{"type":47,"value":435},"  email=\"customer@example.com\",\n",{"type":42,"tag":240,"props":437,"children":438},{"class":242,"line":388},[439],{"type":42,"tag":240,"props":440,"children":441},{},[442],{"type":47,"value":443},"  stripe_version='2026-02-25.clover'\n",{"type":42,"tag":240,"props":445,"children":447},{"class":242,"line":446},4,[448],{"type":42,"tag":240,"props":449,"children":450},{},[451],{"type":47,"value":452},")\n",{"type":42,"tag":98,"props":454,"children":456},{"id":455},"strongly-typed-languages-java-go-net",[457],{"type":47,"value":458},"Strongly-Typed Languages (Java, Go, .NET)",{"type":42,"tag":43,"props":460,"children":461},{},[462],{"type":47,"value":463},"These use a fixed API version matching the SDK release date. Do not 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.",{"type":42,"tag":98,"props":465,"children":467},{"id":466},"best-practice",[468],{"type":47,"value":469},"Best Practice",{"type":42,"tag":43,"props":471,"children":472},{},[473],{"type":47,"value":474},"Always specify the API version you're integrating against in your code instead of relying on your account's default API version:",{"type":42,"tag":229,"props":476,"children":478},{"className":277,"code":477,"language":279,"meta":234,"style":234},"\u002F\u002F Good: Explicit version\nconst stripe = require('stripe')('sk_test_xxx', {\n  apiVersion: '2026-02-25.clover'\n});\n\n\u002F\u002F Avoid: Relying on account default\nconst stripe = require('stripe')('sk_test_xxx');\n",[479],{"type":42,"tag":74,"props":480,"children":481},{"__ignoreMap":234},[482,491,550,573,588,598,607],{"type":42,"tag":240,"props":483,"children":484},{"class":242,"line":243},[485],{"type":42,"tag":240,"props":486,"children":488},{"style":487},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[489],{"type":47,"value":490},"\u002F\u002F Good: Explicit version\n",{"type":42,"tag":240,"props":492,"children":493},{"class":242,"line":252},[494,498,502,506,510,514,518,522,526,530,534,538,542,546],{"type":42,"tag":240,"props":495,"children":496},{"style":289},[497],{"type":47,"value":292},{"type":42,"tag":240,"props":499,"children":500},{"style":295},[501],{"type":47,"value":298},{"type":42,"tag":240,"props":503,"children":504},{"style":301},[505],{"type":47,"value":304},{"type":42,"tag":240,"props":507,"children":508},{"style":307},[509],{"type":47,"value":310},{"type":42,"tag":240,"props":511,"children":512},{"style":295},[513],{"type":47,"value":315},{"type":42,"tag":240,"props":515,"children":516},{"style":301},[517],{"type":47,"value":320},{"type":42,"tag":240,"props":519,"children":520},{"style":323},[521],{"type":47,"value":24},{"type":42,"tag":240,"props":523,"children":524},{"style":301},[525],{"type":47,"value":320},{"type":42,"tag":240,"props":527,"children":528},{"style":295},[529],{"type":47,"value":334},{"type":42,"tag":240,"props":531,"children":532},{"style":301},[533],{"type":47,"value":320},{"type":42,"tag":240,"props":535,"children":536},{"style":323},[537],{"type":47,"value":343},{"type":42,"tag":240,"props":539,"children":540},{"style":301},[541],{"type":47,"value":320},{"type":42,"tag":240,"props":543,"children":544},{"style":301},[545],{"type":47,"value":352},{"type":42,"tag":240,"props":547,"children":548},{"style":301},[549],{"type":47,"value":357},{"type":42,"tag":240,"props":551,"children":552},{"class":242,"line":388},[553,557,561,565,569],{"type":42,"tag":240,"props":554,"children":555},{"style":363},[556],{"type":47,"value":366},{"type":42,"tag":240,"props":558,"children":559},{"style":301},[560],{"type":47,"value":371},{"type":42,"tag":240,"props":562,"children":563},{"style":301},[564],{"type":47,"value":376},{"type":42,"tag":240,"props":566,"children":567},{"style":323},[568],{"type":47,"value":79},{"type":42,"tag":240,"props":570,"children":571},{"style":301},[572],{"type":47,"value":385},{"type":42,"tag":240,"props":574,"children":575},{"class":242,"line":446},[576,580,584],{"type":42,"tag":240,"props":577,"children":578},{"style":301},[579],{"type":47,"value":394},{"type":42,"tag":240,"props":581,"children":582},{"style":295},[583],{"type":47,"value":399},{"type":42,"tag":240,"props":585,"children":586},{"style":301},[587],{"type":47,"value":404},{"type":42,"tag":240,"props":589,"children":591},{"class":242,"line":590},5,[592],{"type":42,"tag":240,"props":593,"children":595},{"emptyLinePlaceholder":594},true,[596],{"type":47,"value":597},"\n",{"type":42,"tag":240,"props":599,"children":601},{"class":242,"line":600},6,[602],{"type":42,"tag":240,"props":603,"children":604},{"style":487},[605],{"type":47,"value":606},"\u002F\u002F Avoid: Relying on account default\n",{"type":42,"tag":240,"props":608,"children":610},{"class":242,"line":609},7,[611,615,619,623,627,631,635,639,643,647,651,655,659,663],{"type":42,"tag":240,"props":612,"children":613},{"style":289},[614],{"type":47,"value":292},{"type":42,"tag":240,"props":616,"children":617},{"style":295},[618],{"type":47,"value":298},{"type":42,"tag":240,"props":620,"children":621},{"style":301},[622],{"type":47,"value":304},{"type":42,"tag":240,"props":624,"children":625},{"style":307},[626],{"type":47,"value":310},{"type":42,"tag":240,"props":628,"children":629},{"style":295},[630],{"type":47,"value":315},{"type":42,"tag":240,"props":632,"children":633},{"style":301},[634],{"type":47,"value":320},{"type":42,"tag":240,"props":636,"children":637},{"style":323},[638],{"type":47,"value":24},{"type":42,"tag":240,"props":640,"children":641},{"style":301},[642],{"type":47,"value":320},{"type":42,"tag":240,"props":644,"children":645},{"style":295},[646],{"type":47,"value":334},{"type":42,"tag":240,"props":648,"children":649},{"style":301},[650],{"type":47,"value":320},{"type":42,"tag":240,"props":652,"children":653},{"style":323},[654],{"type":47,"value":343},{"type":42,"tag":240,"props":656,"children":657},{"style":301},[658],{"type":47,"value":320},{"type":42,"tag":240,"props":660,"children":661},{"style":295},[662],{"type":47,"value":399},{"type":42,"tag":240,"props":664,"children":665},{"style":301},[666],{"type":47,"value":404},{"type":42,"tag":62,"props":668,"children":670},{"id":669},"stripejs-versioning",[671],{"type":47,"value":672},"Stripe.js Versioning",{"type":42,"tag":43,"props":674,"children":675},{},[676,677,683],{"type":47,"value":199},{"type":42,"tag":179,"props":678,"children":681},{"href":679,"rel":680},"https:\u002F\u002Fdocs.stripe.com\u002Fsdks\u002Fstripejs-versioning.md",[183],[682],{"type":47,"value":672},{"type":47,"value":208},{"type":42,"tag":43,"props":685,"children":686},{},[687],{"type":47,"value":688},"Stripe.js uses an evergreen model with major releases (Acacia, Basil, Clover) on a biannual basis.",{"type":42,"tag":98,"props":690,"children":692},{"id":691},"loading-versioned-stripejs",[693],{"type":47,"value":694},"Loading Versioned Stripe.js",{"type":42,"tag":43,"props":696,"children":697},{},[698],{"type":42,"tag":108,"props":699,"children":700},{},[701],{"type":47,"value":702},"Via Script Tag:",{"type":42,"tag":229,"props":704,"children":708},{"className":705,"code":706,"language":707,"meta":234,"style":234},"language-html shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003Cscript src=\"https:\u002F\u002Fjs.stripe.com\u002Fclover\u002Fstripe.js\">\u003C\u002Fscript>\n","html",[709],{"type":42,"tag":74,"props":710,"children":711},{"__ignoreMap":234},[712],{"type":42,"tag":240,"props":713,"children":714},{"class":242,"line":243},[715,720,725,730,734,739,744,748,753,757],{"type":42,"tag":240,"props":716,"children":717},{"style":301},[718],{"type":47,"value":719},"\u003C",{"type":42,"tag":240,"props":721,"children":722},{"style":363},[723],{"type":47,"value":724},"script",{"type":42,"tag":240,"props":726,"children":727},{"style":289},[728],{"type":47,"value":729}," src",{"type":42,"tag":240,"props":731,"children":732},{"style":301},[733],{"type":47,"value":304},{"type":42,"tag":240,"props":735,"children":736},{"style":301},[737],{"type":47,"value":738},"\"",{"type":42,"tag":240,"props":740,"children":741},{"style":323},[742],{"type":47,"value":743},"https:\u002F\u002Fjs.stripe.com\u002Fclover\u002Fstripe.js",{"type":42,"tag":240,"props":745,"children":746},{"style":301},[747],{"type":47,"value":738},{"type":42,"tag":240,"props":749,"children":750},{"style":301},[751],{"type":47,"value":752},">\u003C\u002F",{"type":42,"tag":240,"props":754,"children":755},{"style":363},[756],{"type":47,"value":724},{"type":42,"tag":240,"props":758,"children":759},{"style":301},[760],{"type":47,"value":761},">\n",{"type":42,"tag":43,"props":763,"children":764},{},[765],{"type":42,"tag":108,"props":766,"children":767},{},[768],{"type":47,"value":769},"Via npm:",{"type":42,"tag":229,"props":771,"children":775},{"className":772,"code":773,"language":774,"meta":234,"style":234},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install @stripe\u002Fstripe-js\n","bash",[776],{"type":42,"tag":74,"props":777,"children":778},{"__ignoreMap":234},[779],{"type":42,"tag":240,"props":780,"children":781},{"class":242,"line":243},[782,788,793],{"type":42,"tag":240,"props":783,"children":785},{"style":784},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[786],{"type":47,"value":787},"npm",{"type":42,"tag":240,"props":789,"children":790},{"style":323},[791],{"type":47,"value":792}," install",{"type":42,"tag":240,"props":794,"children":795},{"style":323},[796],{"type":47,"value":797}," @stripe\u002Fstripe-js\n",{"type":42,"tag":43,"props":799,"children":800},{},[801],{"type":47,"value":802},"Major npm versions correspond to specific Stripe.js versions.",{"type":42,"tag":98,"props":804,"children":806},{"id":805},"api-version-pairing",[807],{"type":47,"value":808},"API Version Pairing",{"type":42,"tag":43,"props":810,"children":811},{},[812],{"type":47,"value":813},"Each Stripe.js version automatically pairs with its corresponding API version. For instance:",{"type":42,"tag":116,"props":815,"children":816},{},[817,829],{"type":42,"tag":120,"props":818,"children":819},{},[820,822,827],{"type":47,"value":821},"Clover Stripe.js uses ",{"type":42,"tag":74,"props":823,"children":825},{"className":824},[],[826],{"type":47,"value":79},{"type":47,"value":828}," API",{"type":42,"tag":120,"props":830,"children":831},{},[832,834,839],{"type":47,"value":833},"Acacia Stripe.js uses ",{"type":42,"tag":74,"props":835,"children":837},{"className":836},[],[838],{"type":47,"value":94},{"type":47,"value":828},{"type":42,"tag":43,"props":841,"children":842},{},[843],{"type":47,"value":844},"You cannot override this association.",{"type":42,"tag":98,"props":846,"children":848},{"id":847},"migrating-from-v3",[849],{"type":47,"value":850},"Migrating from v3",{"type":42,"tag":852,"props":853,"children":854},"ol",{},[855,860,865,870],{"type":42,"tag":120,"props":856,"children":857},{},[858],{"type":47,"value":859},"Identify your current API version in code",{"type":42,"tag":120,"props":861,"children":862},{},[863],{"type":47,"value":864},"Review the changelog for relevant changes",{"type":42,"tag":120,"props":866,"children":867},{},[868],{"type":47,"value":869},"Consider gradually updating your API version before switching Stripe.js versions",{"type":42,"tag":120,"props":871,"children":872},{},[873],{"type":47,"value":874},"Stripe continues supporting v3 indefinitely",{"type":42,"tag":62,"props":876,"children":878},{"id":877},"mobile-sdk-versioning",[879],{"type":47,"value":880},"Mobile SDK Versioning",{"type":42,"tag":43,"props":882,"children":883},{},[884,885,891],{"type":47,"value":199},{"type":42,"tag":179,"props":886,"children":889},{"href":887,"rel":888},"https:\u002F\u002Fdocs.stripe.com\u002Fsdks\u002Fmobile-sdk-versioning.md",[183],[890],{"type":47,"value":880},{"type":47,"value":208},{"type":42,"tag":98,"props":893,"children":895},{"id":894},"ios-and-android-sdks",[896],{"type":47,"value":897},"iOS and Android SDKs",{"type":42,"tag":43,"props":899,"children":900},{},[901,903,908],{"type":47,"value":902},"Both platforms follow ",{"type":42,"tag":108,"props":904,"children":905},{},[906],{"type":47,"value":907},"semantic versioning",{"type":47,"value":909}," (MAJOR.MINOR.PATCH):",{"type":42,"tag":116,"props":911,"children":912},{},[913,923,933],{"type":42,"tag":120,"props":914,"children":915},{},[916,921],{"type":42,"tag":108,"props":917,"children":918},{},[919],{"type":47,"value":920},"MAJOR",{"type":47,"value":922},": Breaking API changes",{"type":42,"tag":120,"props":924,"children":925},{},[926,931],{"type":42,"tag":108,"props":927,"children":928},{},[929],{"type":47,"value":930},"MINOR",{"type":47,"value":932},": New functionality (backward-compatible)",{"type":42,"tag":120,"props":934,"children":935},{},[936,941],{"type":42,"tag":108,"props":937,"children":938},{},[939],{"type":47,"value":940},"PATCH",{"type":47,"value":942},": Bug fixes (backward-compatible)",{"type":42,"tag":43,"props":944,"children":945},{},[946],{"type":47,"value":947},"New features and fixes release only on the latest major version. Upgrade regularly to access improvements.",{"type":42,"tag":98,"props":949,"children":951},{"id":950},"react-native-sdk",[952],{"type":47,"value":953},"React Native SDK",{"type":42,"tag":43,"props":955,"children":956},{},[957],{"type":47,"value":958},"Uses a different model (0.x.y schema):",{"type":42,"tag":116,"props":960,"children":961},{},[962,972],{"type":42,"tag":120,"props":963,"children":964},{},[965,970],{"type":42,"tag":108,"props":966,"children":967},{},[968],{"type":47,"value":969},"Minor version changes",{"type":47,"value":971}," (x): Breaking changes AND new features",{"type":42,"tag":120,"props":973,"children":974},{},[975,980],{"type":42,"tag":108,"props":976,"children":977},{},[978],{"type":47,"value":979},"Patch updates",{"type":47,"value":981}," (y): Critical bug fixes only",{"type":42,"tag":98,"props":983,"children":985},{"id":984},"backend-compatibility",[986],{"type":47,"value":987},"Backend Compatibility",{"type":42,"tag":43,"props":989,"children":990},{},[991],{"type":47,"value":992},"All mobile SDKs work with any Stripe API version you use on your backend unless documentation specifies otherwise.",{"type":42,"tag":62,"props":994,"children":996},{"id":995},"upgrade-checklist",[997],{"type":47,"value":998},"Upgrade Checklist",{"type":42,"tag":852,"props":1000,"children":1001},{},[1002,1013,1027,1046,1059,1072,1077,1082,1087],{"type":42,"tag":120,"props":1003,"children":1004},{},[1005,1006,1011],{"type":47,"value":177},{"type":42,"tag":179,"props":1007,"children":1009},{"href":181,"rel":1008},[183],[1010],{"type":47,"value":186},{"type":47,"value":1012}," for changes between your current and target versions",{"type":42,"tag":120,"props":1014,"children":1015},{},[1016,1018,1025],{"type":47,"value":1017},"Check ",{"type":42,"tag":179,"props":1019,"children":1022},{"href":1020,"rel":1021},"https:\u002F\u002Fdocs.stripe.com\u002Fupgrades.md",[183],[1023],{"type":47,"value":1024},"Upgrades Guide",{"type":47,"value":1026}," for migration guidance",{"type":42,"tag":120,"props":1028,"children":1029},{},[1030,1032,1038,1039,1045],{"type":47,"value":1031},"Update server-side SDK package version (e.g., ",{"type":42,"tag":74,"props":1033,"children":1035},{"className":1034},[],[1036],{"type":47,"value":1037},"npm update stripe",{"type":47,"value":81},{"type":42,"tag":74,"props":1040,"children":1042},{"className":1041},[],[1043],{"type":47,"value":1044},"pip install --upgrade stripe",{"type":47,"value":399},{"type":42,"tag":120,"props":1047,"children":1048},{},[1049,1051,1057],{"type":47,"value":1050},"Update the ",{"type":42,"tag":74,"props":1052,"children":1054},{"className":1053},[],[1055],{"type":47,"value":1056},"apiVersion",{"type":47,"value":1058}," parameter in your Stripe client initialization",{"type":42,"tag":120,"props":1060,"children":1061},{},[1062,1064,1070],{"type":47,"value":1063},"Test your integration against the new API version using the ",{"type":42,"tag":74,"props":1065,"children":1067},{"className":1066},[],[1068],{"type":47,"value":1069},"Stripe-Version",{"type":47,"value":1071}," header",{"type":42,"tag":120,"props":1073,"children":1074},{},[1075],{"type":47,"value":1076},"Update webhook handlers to handle new event structures",{"type":42,"tag":120,"props":1078,"children":1079},{},[1080],{"type":47,"value":1081},"Update Stripe.js script tag or npm package version if needed",{"type":42,"tag":120,"props":1083,"children":1084},{},[1085],{"type":47,"value":1086},"Update mobile SDK versions in your package manager if needed",{"type":42,"tag":120,"props":1088,"children":1089},{},[1090],{"type":47,"value":1091},"Store Stripe object IDs in databases that accommodate up to 255 characters (case-sensitive collation)",{"type":42,"tag":62,"props":1093,"children":1095},{"id":1094},"testing-api-version-changes",[1096],{"type":47,"value":1097},"Testing API Version Changes",{"type":42,"tag":43,"props":1099,"children":1100},{},[1101,1103,1108],{"type":47,"value":1102},"Use the ",{"type":42,"tag":74,"props":1104,"children":1106},{"className":1105},[],[1107],{"type":47,"value":1069},{"type":47,"value":1109}," header to test your code against a new version without changing your default:",{"type":42,"tag":229,"props":1111,"children":1113},{"className":772,"code":1112,"language":774,"meta":234,"style":234},"curl https:\u002F\u002Fapi.stripe.com\u002Fv1\u002Fcustomers \\\n  -u sk_test_xxx: \\\n  -H \"Stripe-Version: 2026-02-25.clover\"\n",[1114],{"type":42,"tag":74,"props":1115,"children":1116},{"__ignoreMap":234},[1117,1135,1152],{"type":42,"tag":240,"props":1118,"children":1119},{"class":242,"line":243},[1120,1125,1130],{"type":42,"tag":240,"props":1121,"children":1122},{"style":784},[1123],{"type":47,"value":1124},"curl",{"type":42,"tag":240,"props":1126,"children":1127},{"style":323},[1128],{"type":47,"value":1129}," https:\u002F\u002Fapi.stripe.com\u002Fv1\u002Fcustomers",{"type":42,"tag":240,"props":1131,"children":1132},{"style":295},[1133],{"type":47,"value":1134}," \\\n",{"type":42,"tag":240,"props":1136,"children":1137},{"class":242,"line":252},[1138,1143,1148],{"type":42,"tag":240,"props":1139,"children":1140},{"style":323},[1141],{"type":47,"value":1142},"  -u",{"type":42,"tag":240,"props":1144,"children":1145},{"style":323},[1146],{"type":47,"value":1147}," sk_test_xxx:",{"type":42,"tag":240,"props":1149,"children":1150},{"style":295},[1151],{"type":47,"value":1134},{"type":42,"tag":240,"props":1153,"children":1154},{"class":242,"line":388},[1155,1160,1165,1170],{"type":42,"tag":240,"props":1156,"children":1157},{"style":323},[1158],{"type":47,"value":1159},"  -H",{"type":42,"tag":240,"props":1161,"children":1162},{"style":301},[1163],{"type":47,"value":1164}," \"",{"type":42,"tag":240,"props":1166,"children":1167},{"style":323},[1168],{"type":47,"value":1169},"Stripe-Version: 2026-02-25.clover",{"type":42,"tag":240,"props":1171,"children":1172},{"style":301},[1173],{"type":47,"value":1174},"\"\n",{"type":42,"tag":43,"props":1176,"children":1177},{},[1178],{"type":47,"value":1179},"Or in code:",{"type":42,"tag":229,"props":1181,"children":1183},{"className":277,"code":1182,"language":279,"meta":234,"style":234},"const stripe = require('stripe')('sk_test_xxx', {\n  apiVersion: '2026-02-25.clover'  \u002F\u002F Test with new version\n});\n",[1184],{"type":42,"tag":74,"props":1185,"children":1186},{"__ignoreMap":234},[1187,1246,1274],{"type":42,"tag":240,"props":1188,"children":1189},{"class":242,"line":243},[1190,1194,1198,1202,1206,1210,1214,1218,1222,1226,1230,1234,1238,1242],{"type":42,"tag":240,"props":1191,"children":1192},{"style":289},[1193],{"type":47,"value":292},{"type":42,"tag":240,"props":1195,"children":1196},{"style":295},[1197],{"type":47,"value":298},{"type":42,"tag":240,"props":1199,"children":1200},{"style":301},[1201],{"type":47,"value":304},{"type":42,"tag":240,"props":1203,"children":1204},{"style":307},[1205],{"type":47,"value":310},{"type":42,"tag":240,"props":1207,"children":1208},{"style":295},[1209],{"type":47,"value":315},{"type":42,"tag":240,"props":1211,"children":1212},{"style":301},[1213],{"type":47,"value":320},{"type":42,"tag":240,"props":1215,"children":1216},{"style":323},[1217],{"type":47,"value":24},{"type":42,"tag":240,"props":1219,"children":1220},{"style":301},[1221],{"type":47,"value":320},{"type":42,"tag":240,"props":1223,"children":1224},{"style":295},[1225],{"type":47,"value":334},{"type":42,"tag":240,"props":1227,"children":1228},{"style":301},[1229],{"type":47,"value":320},{"type":42,"tag":240,"props":1231,"children":1232},{"style":323},[1233],{"type":47,"value":343},{"type":42,"tag":240,"props":1235,"children":1236},{"style":301},[1237],{"type":47,"value":320},{"type":42,"tag":240,"props":1239,"children":1240},{"style":301},[1241],{"type":47,"value":352},{"type":42,"tag":240,"props":1243,"children":1244},{"style":301},[1245],{"type":47,"value":357},{"type":42,"tag":240,"props":1247,"children":1248},{"class":242,"line":252},[1249,1253,1257,1261,1265,1269],{"type":42,"tag":240,"props":1250,"children":1251},{"style":363},[1252],{"type":47,"value":366},{"type":42,"tag":240,"props":1254,"children":1255},{"style":301},[1256],{"type":47,"value":371},{"type":42,"tag":240,"props":1258,"children":1259},{"style":301},[1260],{"type":47,"value":376},{"type":42,"tag":240,"props":1262,"children":1263},{"style":323},[1264],{"type":47,"value":79},{"type":42,"tag":240,"props":1266,"children":1267},{"style":301},[1268],{"type":47,"value":320},{"type":42,"tag":240,"props":1270,"children":1271},{"style":487},[1272],{"type":47,"value":1273},"  \u002F\u002F Test with new version\n",{"type":42,"tag":240,"props":1275,"children":1276},{"class":242,"line":388},[1277,1281,1285],{"type":42,"tag":240,"props":1278,"children":1279},{"style":301},[1280],{"type":47,"value":394},{"type":42,"tag":240,"props":1282,"children":1283},{"style":295},[1284],{"type":47,"value":399},{"type":42,"tag":240,"props":1286,"children":1287},{"style":301},[1288],{"type":47,"value":404},{"type":42,"tag":62,"props":1290,"children":1292},{"id":1291},"important-notes",[1293],{"type":47,"value":1294},"Important Notes",{"type":42,"tag":116,"props":1296,"children":1297},{},[1298,1303,1308,1313],{"type":42,"tag":120,"props":1299,"children":1300},{},[1301],{"type":47,"value":1302},"Your webhook listener should handle unfamiliar event types gracefully",{"type":42,"tag":120,"props":1304,"children":1305},{},[1306],{"type":47,"value":1307},"Test webhooks with the new version structure before upgrading",{"type":42,"tag":120,"props":1309,"children":1310},{},[1311],{"type":47,"value":1312},"Breaking changes are tagged by affected product areas (Payments, Billing, Connect, etc.)",{"type":42,"tag":120,"props":1314,"children":1315},{},[1316],{"type":47,"value":1317},"Multiple API versions coexist simultaneously, enabling staged adoption",{"type":42,"tag":1319,"props":1320,"children":1321},"style",{},[1322],{"type":47,"value":1323},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1325,"total":1530},[1326,1347,1370,1387,1403,1422,1441,1457,1473,1487,1499,1514],{"slug":1327,"name":1327,"fn":1328,"description":1329,"org":1330,"tags":1331,"stars":1344,"repoUrl":1345,"updatedAt":1346},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1332,1335,1338,1341],{"name":1333,"slug":1334,"type":15},"Documents","documents",{"name":1336,"slug":1337,"type":15},"Healthcare","healthcare",{"name":1339,"slug":1340,"type":15},"Insurance","insurance",{"name":1342,"slug":1343,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":1348,"name":1348,"fn":1349,"description":1350,"org":1351,"tags":1352,"stars":1367,"repoUrl":1368,"updatedAt":1369},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1353,1356,1358,1361,1364],{"name":1354,"slug":1355,"type":15},".NET","dotnet",{"name":1357,"slug":1348,"type":15},"ASP.NET Core",{"name":1359,"slug":1360,"type":15},"Blazor","blazor",{"name":1362,"slug":1363,"type":15},"C#","csharp",{"name":1365,"slug":1366,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":1371,"name":1371,"fn":1372,"description":1373,"org":1374,"tags":1375,"stars":1367,"repoUrl":1368,"updatedAt":1386},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1376,1379,1382,1385],{"name":1377,"slug":1378,"type":15},"Apps SDK","apps-sdk",{"name":1380,"slug":1381,"type":15},"ChatGPT","chatgpt",{"name":1383,"slug":1384,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":1388,"name":1388,"fn":1389,"description":1390,"org":1391,"tags":1392,"stars":1367,"repoUrl":1368,"updatedAt":1402},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1393,1396,1399],{"name":1394,"slug":1395,"type":15},"API Development","api-development",{"name":1397,"slug":1398,"type":15},"CLI","cli",{"name":1400,"slug":1401,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":1404,"name":1404,"fn":1405,"description":1406,"org":1407,"tags":1408,"stars":1367,"repoUrl":1368,"updatedAt":1421},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1409,1412,1415,1418],{"name":1410,"slug":1411,"type":15},"Cloudflare","cloudflare",{"name":1413,"slug":1414,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":1416,"slug":1417,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":1419,"slug":1420,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":1423,"name":1423,"fn":1424,"description":1425,"org":1426,"tags":1427,"stars":1367,"repoUrl":1368,"updatedAt":1440},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1428,1431,1434,1437],{"name":1429,"slug":1430,"type":15},"Productivity","productivity",{"name":1432,"slug":1433,"type":15},"Project Management","project-management",{"name":1435,"slug":1436,"type":15},"Strategy","strategy",{"name":1438,"slug":1439,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":1442,"name":1442,"fn":1443,"description":1444,"org":1445,"tags":1446,"stars":1367,"repoUrl":1368,"updatedAt":1456},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1447,1450,1452,1455],{"name":1448,"slug":1449,"type":15},"Design","design",{"name":1451,"slug":1442,"type":15},"Figma",{"name":1453,"slug":1454,"type":15},"Frontend","frontend",{"name":1383,"slug":1384,"type":15},"2026-04-12T05:06:47.939943",{"slug":1458,"name":1458,"fn":1459,"description":1460,"org":1461,"tags":1462,"stars":1367,"repoUrl":1368,"updatedAt":1472},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1463,1464,1467,1468,1469],{"name":1448,"slug":1449,"type":15},{"name":1465,"slug":1466,"type":15},"Design System","design-system",{"name":1451,"slug":1442,"type":15},{"name":1453,"slug":1454,"type":15},{"name":1470,"slug":1471,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":1474,"name":1474,"fn":1475,"description":1476,"org":1477,"tags":1478,"stars":1367,"repoUrl":1368,"updatedAt":1486},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1479,1480,1481,1484,1485],{"name":1448,"slug":1449,"type":15},{"name":1465,"slug":1466,"type":15},{"name":1482,"slug":1483,"type":15},"Documentation","documentation",{"name":1451,"slug":1442,"type":15},{"name":1453,"slug":1454,"type":15},"2026-05-16T06:07:47.821474",{"slug":1488,"name":1488,"fn":1489,"description":1490,"org":1491,"tags":1492,"stars":1367,"repoUrl":1368,"updatedAt":1498},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1493,1494,1495,1496,1497],{"name":1448,"slug":1449,"type":15},{"name":1451,"slug":1442,"type":15},{"name":1453,"slug":1454,"type":15},{"name":1470,"slug":1471,"type":15},{"name":1365,"slug":1366,"type":15},"2026-05-16T06:07:40.583615",{"slug":1500,"name":1500,"fn":1501,"description":1502,"org":1503,"tags":1504,"stars":1367,"repoUrl":1368,"updatedAt":1513},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1505,1508,1509,1512],{"name":1506,"slug":1507,"type":15},"Animation","animation",{"name":1400,"slug":1401,"type":15},{"name":1510,"slug":1511,"type":15},"Creative","creative",{"name":1448,"slug":1449,"type":15},"2026-05-02T05:31:48.48485",{"slug":1515,"name":1515,"fn":1516,"description":1517,"org":1518,"tags":1519,"stars":1367,"repoUrl":1368,"updatedAt":1529},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1520,1521,1522,1525,1528],{"name":1510,"slug":1511,"type":15},{"name":1448,"slug":1449,"type":15},{"name":1523,"slug":1524,"type":15},"Image Generation","image-generation",{"name":1526,"slug":1527,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":1532,"total":1646},[1533,1550,1566,1578,1596,1614,1634],{"slug":1534,"name":1534,"fn":1535,"description":1536,"org":1537,"tags":1538,"stars":25,"repoUrl":26,"updatedAt":1549},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1539,1542,1545,1548],{"name":1540,"slug":1541,"type":15},"Accessibility","accessibility",{"name":1543,"slug":1544,"type":15},"Charts","charts",{"name":1546,"slug":1547,"type":15},"Data Visualization","data-visualization",{"name":1448,"slug":1449,"type":15},"2026-06-30T19:00:57.102",{"slug":1551,"name":1551,"fn":1552,"description":1553,"org":1554,"tags":1555,"stars":25,"repoUrl":26,"updatedAt":1565},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1556,1559,1562],{"name":1557,"slug":1558,"type":15},"Agents","agents",{"name":1560,"slug":1561,"type":15},"Browser Automation","browser-automation",{"name":1563,"slug":1564,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":1567,"name":1567,"fn":1568,"description":1569,"org":1570,"tags":1571,"stars":25,"repoUrl":26,"updatedAt":1577},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1572,1573,1576],{"name":1560,"slug":1561,"type":15},{"name":1574,"slug":1575,"type":15},"Local Development","local-development",{"name":1563,"slug":1564,"type":15},"2026-04-06T18:41:17.526867",{"slug":1579,"name":1579,"fn":1580,"description":1581,"org":1582,"tags":1583,"stars":25,"repoUrl":26,"updatedAt":1595},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1584,1585,1586,1589,1592],{"name":1557,"slug":1558,"type":15},{"name":1416,"slug":1417,"type":15},{"name":1587,"slug":1588,"type":15},"SDK","sdk",{"name":1590,"slug":1591,"type":15},"Serverless","serverless",{"name":1593,"slug":1594,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":1597,"name":1597,"fn":1598,"description":1599,"org":1600,"tags":1601,"stars":25,"repoUrl":26,"updatedAt":1613},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1602,1603,1606,1609,1610],{"name":1453,"slug":1454,"type":15},{"name":1604,"slug":1605,"type":15},"React","react",{"name":1607,"slug":1608,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":1470,"slug":1471,"type":15},{"name":1611,"slug":1612,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":1615,"name":1615,"fn":1616,"description":1617,"org":1618,"tags":1619,"stars":25,"repoUrl":26,"updatedAt":1633},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1620,1623,1626,1629,1632],{"name":1621,"slug":1622,"type":15},"AI Infrastructure","ai-infrastructure",{"name":1624,"slug":1625,"type":15},"Cost Optimization","cost-optimization",{"name":1627,"slug":1628,"type":15},"LLM","llm",{"name":1630,"slug":1631,"type":15},"Performance","performance",{"name":1611,"slug":1612,"type":15},"2026-04-06T18:40:44.377464",{"slug":1635,"name":1635,"fn":1636,"description":1637,"org":1638,"tags":1639,"stars":25,"repoUrl":26,"updatedAt":1645},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1640,1641,1644],{"name":1624,"slug":1625,"type":15},{"name":1642,"slug":1643,"type":15},"Database","database",{"name":1627,"slug":1628,"type":15},"2026-04-06T18:41:08.513425",600]