plugins marketplace
← All plugins

stripe

v1.0.2

Payments and business tools

Codex2 skills

by StripeMIT5kupdated 3 weeks ago

Source

git clone https://github.com/openai/plugins

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/stripe/ inside the repository.

Layout

plugins/stripe/
├── .codex-plugin/plugin.json
├── skills/stripe-best-practices/SKILL.md
└── skills/upgrade-stripe/SKILL.md

Skills2

stripe-best-practicesskills/stripe-best-practices/SKILL.md

Guides Stripe integration decisions — API selection (Checkout Sessions vs PaymentIntents), Connect platform setup (Accounts v2, controller properties), billing/subscriptions, Treasury financial accounts, integration surfaces (Checkout, Payment Element), and migrating from deprecated Stripe APIs. Use when building, modifying, or reviewing any Stripe integration — including accepting payments, building marketplaces, integrating Stripe, processing payments, setting up subscriptions, or creating connected accounts.

upgrade-stripeskills/upgrade-stripe/SKILL.md

Guide for upgrading Stripe API versions and SDKs

Manifests1

plugins/stripe/.codex-plugin/plugin.json
{
  "name": "stripe",
  "version": "1.0.2",
  "description": "Payments and business tools",
  "author": {
    "name": "Stripe",
    "url": "https://stripe.com"
  },
  "homepage": "https://stripe.com",
  "repository": "https://github.com/openai/plugins",
  "license": "MIT",
  "keywords": [],
  "skills": "./skills/",
  "apps": "./.app.json",
  "interface": {
    "displayName": "Stripe",
    "developerName": "Stripe",
    "shortDescription": "Payments and business tools",
    "longDescription": "Payments and business tools",
    "category": "Finance",
    "capabilities": [],
    "websiteURL": "https://stripe.com",
    "privacyPolicyURL": "https://stripe.com/privacy",
    "termsOfServiceURL": "https://stripe.com/legal/ssa",
    "brandColor": "#635BFF",
    "defaultPrompt": [
      "Use Stripe to help with this task"
    ],
    "screenshots": [],
    "composerIcon": "./assets/app-icon.png",
    "logo": "./assets/app-icon.png"
  }
}