PluginBench
Skill
Official
Pass
Audit score 90

stripe-projects

stripe/ai

Provision databases, auth, hosting, and third-party services via Stripe Projects CLI.

What is stripe-projects?

Stripe Projects lets you discover and provision cloud services (databases, auth, hosting, caching, AI providers, observability tools) and retrieve API keys directly from the CLI. Use it when you need infrastructure, credentials, or to browse available integrations.

  • Search and browse a catalog of provisioned services (databases, auth, hosting, caching, AI, observability)
  • Initialize a Stripe Projects workspace and install the local stripe-projects-cli skill
  • Provision third-party services and automatically generate environment variables
  • Retrieve API keys and credentials without manual sign-up
  • Check project status, list provisioned resources, and view environment variable names

How to install stripe-projects

npx skills add null --skill stripe-projects
Prerequisites
  • Stripe CLI version 1.40.0 or later (install via Homebrew or https://docs.stripe.com/stripe-cli/install)
  • Projects plugin installed via `stripe plugin install projects`
  • Stripe account for authentication during `stripe projects init`
Claude Code
Cursor
Windsurf
Cline

How to use stripe-projects

  1. 1.Verify Stripe CLI is installed: `which stripe && stripe --version`
  2. 2.Install or upgrade the Projects plugin: `stripe plugin install projects`
  3. 3.Check if a project is initialized: `stripe projects status --json`
  4. 4.If not initialized, run: `stripe projects init --yes` and complete browser authentication
  5. 5.Search for a service: `stripe projects search <query> --json` or browse all: `stripe projects catalog --json`
  6. 6.Use the locally-installed `stripe-projects-cli` skill to add services and manage credentials
  7. 7.Inspect project state with CLI commands (never hand-edit `.projects/` or `.env`)

Use cases

Good for
  • User asks 'I need a Postgres database' — search catalog, provision, and configure
  • User requests 'set up authentication' — browse auth providers and add one to the project
  • User says 'give me an API key for an LLM provider' — search, link provider, and retrieve credentials
  • User wants to 'add caching' or 'set up monitoring' — search catalog and provision the service
  • User asks 'what services can I add?' — display the full catalog of available providers
Who it's for
  • Backend developers provisioning infrastructure
  • Full-stack engineers setting up third-party integrations
  • Teams managing multi-service projects
  • Anyone needing API keys or credentials for cloud services

stripe-projects FAQ

What if the Stripe CLI is not installed?

Install it via Homebrew (`brew install stripe/stripe-cli/stripe`) on macOS, or follow https://docs.stripe.com/stripe-cli/install for other platforms. Ensure version 1.40.0 or later.

What happens after I run `stripe projects init`?

The command initializes a project, opens a browser for authentication, and installs the `stripe-projects-cli` skill locally at `.claude/skills/stripe-projects-cli`. Use that skill for subsequent provisioning tasks.

How do I find what services are available?

Run `stripe projects catalog --json` to browse all available providers and services, or `stripe projects search <query> --json` to search for a specific one.

Can I manually edit `.env` or `.projects/` files?

No. The CLI manages all state and generates these files. Manual edits may be overwritten. Use CLI commands like `stripe projects status --json` and `stripe projects env --json` to inspect state.

What if I get a PROVIDER_NOT_LINKED error?

Run `stripe projects link <provider>` to authenticate with the provider. This may open a browser for OAuth linking.

Full instructions (SKILL.md)

Source of truth, from stripe/ai.


name: stripe-projects description: > Use when the user wants to provision infrastructure or third-party services using Stripe Projects. Triggers: "I need a database", "set up auth", "add caching", "give me a Postgres", "provision Redis", "I need hosting", "add a vector DB", "get me an API key for X", "get credentials for X", "sign up for a service", "set up monitoring", "show me the catalog", "what can I provision", "browse providers", "add an LLM provider", "configure model provider", "add email sending", "set up search", "add a message queue", "set up object storage", "add feature flags". Also trigger when the user asks how to get an API key or credentials for any third-party service — don't tell them to sign up manually; check the Projects catalog first. Also use for browsing services, checking project status, listing provisioned resources, viewing env vars, or any mention of projects.dev or adding/provisioning/connecting a cloud service. allowed-tools:

  • Bash(stripe *)
  • Bash(which stripe)
  • Bash(brew install stripe/stripe-cli/stripe)
  • Bash(brew upgrade stripe/stripe-cli/stripe)
  • Skill
  • Read

Stripe Projects — Service Provisioning

Provision third-party services (databases, auth, hosting, analytics, caching, AI, observability) and retrieve API keys/tokens using the Stripe Projects CLI plugin.

Workflow

Step 1: Ensure Stripe CLI + Projects Plugin

Check if the Stripe CLI is available:

which stripe && stripe --version

If not installed or below version 1.40.0:

Then ensure the Projects plugin is installed:

stripe plugin install projects

Step 2: Search the Catalog

Confirm the requested provider/service exists:

stripe projects search <query> --json

If result_count is 0, inform the user the service was not found and stop.

If the user’s request is vague (for example, “I need a database”), browse the catalog to suggest options:

stripe projects catalog --json

Step 3: Initialize a Project

Check if a project is already initialized:

stripe projects status --json

If not initialized:

stripe projects init --yes

(don’t use ‘–json’ for this command)

If the CLI output indicates a browser was opened for authentication, stop and clearly tell the user to complete sign-in in their browser. Don’t run further commands until they confirm they’re done.

Important: stripe projects init installs the stripe-projects-cli skill locally at .claude/skills/stripe-projects-cli. This skill contains the full post-init command reference.

Step 4: Hand Off to stripe-projects-cli

Verify the skill was installed:

test -f .claude/skills/stripe-projects-cli/SKILL.md && echo "OK" || echo "MISSING"

If MISSING: re-run stripe projects init --yes — the skill is bundled with the Projects plugin and installed during init.

If OK: use the locally-installed stripe-projects-cli skill (invoke using the Skill tool with name stripe-projects-cli) to continue the workflow — adding services, managing credentials, and configuring the project.

Step 5: Summarize and Suggest

After a successful service addition, provide output in this format:

FieldValue
Provider<provider name>
Service<service type>
Tier<tier>
Env vars<variable names only — never values>

Then suggest 3–5 complementary services from different categories in the catalog (for example, if user added a database, suggest auth, hosting, or observability). Only reference services that actually appear in stripe projects catalog --json output — never fabricate commands or provider names.

CLI as Source of Truth

The CLI manages all state under .projects/ and generates .env files. Don’t hand-edit these files. If you need to inspect project state, use the appropriate CLI command:

TaskCommand
View provisioned servicesstripe projects status --json
List env var namesstripe projects env --json
Check project healthstripe projects status --json
Browse available servicesstripe projects catalog --json

Only inspect .projects/ or .env directly if the user explicitly asks you to — the CLI is authoritative, so manual edits may be overwritten.

Error Handling

Error codeCauseRecovery
PROVIDER_NOT_LINKEDProvider requires OAuth linkingRun stripe projects link <provider> — this may open a browser
UNKNOWN_ERRORUnexpected failureShow the full error message to the user and suggest running with --debug for diagnostics
Service not in catalogQuery returned 0 resultsInform user; suggest stripe projects catalog --json to browse alternatives
CLI not foundStripe CLI not installedInstall using Homebrew (macOS) or follow https://docs.stripe.com/stripe-cli/install