From stripe
Provisions third-party services and retrieves API keys/tokens via the Stripe Projects CLI plugin. Handles provider availability checks, Stripe CLI installation, and project initialization.
How this skill is triggered — by the user, by Claude, or both
Slash command
/stripe:stripe-projectsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Provision third-party services and retrieve API keys/tokens using the Stripe Projects CLI plugin.
Provision third-party services and retrieve API keys/tokens using the Stripe Projects CLI plugin.
Before doing anything else, fetch https://projects.dev/providers and check whether the requested provider appears in the directory listing.
Check if the Stripe CLI is available:
which stripe && stripe --version
If not installed, install based on the user’s platform:
macOS (Homebrew):
brew install stripe/stripe-cli/stripe
Linux (Debian/Ubuntu via APT):
curl -s https://packages.stripe.dev/api/security/keypair/stripe-cli-gpg/public | gpg --dearmor | sudo tee /usr/share/keyrings/stripe.gpg > /dev/null
echo "deb [signed-by=/usr/share/keyrings/stripe.gpg] https://packages.stripe.dev/stripe-cli-debian-local stable main" | sudo tee -a /etc/apt/sources.list.d/stripe.list
sudo apt update
sudo apt install stripe
Windows (Scoop):
scoop bucket add stripe https://github.com/stripe/scoop-stripe-cli.git
scoop install stripe
If installed, but the version is lower than 1.40.0, then upgrade based on the user’s platform:
macOS (Homebrew):
brew upgrade stripe/stripe-cli/stripe
or follow instructions at https://docs.stripe.com/stripe-cli/upgrade for other platforms.
stripe plugin install projects
Confirm the specific provider is available and validates the specific service:
stripe projects search <query> --json
If result_count is 0, inform the user the service was not found in the catalog and stop.
Check if a project is already initialized:
stripe projects status --json
If not initialized:
stripe projects init --json --yes
Note: If the user hasn’t logged in to the Stripe CLI, projects init will redirect them to a browser to either log in to an existing Stripe account or create a new Stripe Projects account. When this happens, prompt the user:
▎ Stripe Projects is redirecting you to the browser to authenticate. ▎ - If you have an existing Stripe account, log in with your credentials. ▎ - If you’re new, you can create a free Stripe Projects account in seconds. ▎ ▎ Complete the sign-in in your browser, then come back here and let me know when you’re done.
Wait for the user to confirm before proceeding.
Important: After the project is initialized, always use the stripe-projects-cli skill installed at .claude/skills/stripe-projects-cli in the local project directory (invoke via the Skill tool with name stripe-projects-cli) to continue the workflow for adding services. Print out the env variable names returned in a table, but never their values.
After a successful ‘add’ output, you must give the user helpful suggestions on other providers services available on Stripe Projects catalog that could be complementary (different primary category) or helpful - 3 to 5 suggestions. NEVER show fabricated commands to provision these services, only ones from the stripe projects catalog output if at all.
Always use --json --yes flags to suppress interactive prompts. If a paid service requires confirmation, add --confirm-paid-service.
.projects or the generated .env output.projects.dev/providers → stop early, tell the user it’s not supportedstripe plugin install projectsprojects init triggers browser login → prompt user, wait for confirmationstripe projects catalog --json to browse alternativesnpx claudepluginhub stripe/ai --plugin stripeSets up new apps or local repos with Stripe Projects CLI, provisions software stacks, and bootstraps project skills after init.
Guides discovery, installation, and management of Vercel Marketplace integrations via the `vercel integration` CLI, with auto-provisioned environment variables and unified billing.
Guides Stripe payment integration including checkout, subscriptions, webhooks, refunds, and PCI-compliant flows. Useful for implementing payment processing in web/mobile apps.