# stripe projects command surface
# plugin-version: 0.25.0
# DO NOT EDIT — regenerated by CI (mise run stripe-refresh)
===== stripe projects --help =====
╭─────────────────────────────────────────────────────╮
│ ⡜ Stripe Projects (v0.25.0) │
│ │
│ Provision third-party services, manage credentials, │
│ and pull environment variables. │
╰─────────────────────────────────────────────────────╯
GET STARTED
init [name] Initialize a new project
build [name] Create a starter app with guided setup
list List all projects you can access
pull [projectId] Pull an existing project into this folder
status View the current project, providers, and services
services list Show all services in your project
catalog [filter] Browse services (filter by provider or category)
search <query..> Search services by name, description, or category
switch-account Switch to a different Stripe account or sign in as a different user
MANAGE SERVICES
add [service] Add a service to your project
update <service_reference> [service]
Update a service resource to another service in the same provider
upgrade <service_reference> [service]
Upgrade to paid tiers, plans, or add-ons
downgrade <service_reference> [service]
Downgrade to a lower tier or free plan
remove <resource> Remove a service resource
rotate <resource> Rotate credentials for a service resource
link <provider> Link an existing provider account
unlink <provider> Unlink a provider account from your project
open <provider> Deep link to provider dashboard (if supported)
ENVIRONMENT
env Manage environment variables and configuration
env list List all project environments
env show Show the active project environment
env create <environment> Create a project environment; requires --output
env use <environment> Make a project environment active
env update Rename the active environment or change its output file
env delete <environment> Delete a project environment
env add <member> Add an existing resource or project variable to the active environment
env remove <member> Remove resource or project variable membership from the active environment
variables Manage project variables
variables set <name> Set a backend-backed project variable for the active environment
variables list List project variables and local environment bindings
variables delete <name> Delete a project variable and its local bindings
llm-context List provider guidance URLs for AI-assisted development
BILLING
billing show View your current payment details
billing add Add or update your billing method
spend View charges on your account
FEEDBACK
feedback Send feedback about Stripe Projects
FLAGS
-v, --version Show the current plugin version
--accept-tos Accept provider terms of service without prompting
--confirm-paid-service Confirm willingness to provision a paid service (required in non-interactive mode)
--json Output structured JSON and suppress interactive prompts (ideal for scripting and agents)
-y, --yes Skip confirmation prompts (required for non-interactive destructive commands)
--interactive Allow interactive prompts (disable with --non-interactive for scripting and agent use)
--stream Enable streaming output animations
--debug Enable debug logging for Stripe API requests
EXAMPLES
Full flow — initialize and provision a new project:
$ stripe projects init
$ stripe projects catalog
$ stripe projects search <query>
$ stripe projects add <provider>/<service>
$ stripe projects env --pull
Starter app flow — create a template-based app:
$ stripe projects build my-app
$ stripe projects build --template stripe/nextjs-saas --json --yes --accept-tos create a starter non-interactively
Non-interactive / agent usage (scripting, CI, AI agents):
$ stripe projects add <provider>/<service> --json --yes provision without prompts
$ stripe projects status --json get project state as JSON
$ stripe projects remove <resource> --json --yes remove without confirmation
$ stripe projects env --json list env vars as JSON
===== stripe projects init --help =====
stripe projects init [name]
Initialize a new project
Positionals:
name Project name (defaults to the current directory name) [string]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--skip-skills Skip creating AI agent skill files (.agents/,
.claude/, .cursor/, .cursorignore, AGENTS.md,
CLAUDE.md) [boolean]
--template Template entry ID or template slug to use directly
and skip interactive template selection [string]
--mode Initialization mode: `manual` scaffolds a
workspace, `guided` creates a starter app, and
`template` browses templates directly.
[string] [choices: "guided", "manual", "template"]
--skip-install Skip the template's post-init setup command when
using `--mode guided` or `--mode template`
[boolean]
--from Import a shared stack after initialization (URL
from `stripe projects share`) [string]
--preflight Check all preconditions (auth, eligibility, ToS)
without executing. Reports all blockers at once.
[boolean]
Examples:
stripe projects init Initialize a project workspace in
the current directory
stripe projects init --mode guided Create a starter app with guided
setup
stripe projects init --mode template Browse starter templates directly
during initialization
stripe projects init --mode template Initialize from a specific template
--template stripe/nextjs-saas without opening the template picker
===== stripe projects build --help =====
stripe projects build [name]
Positionals:
name Project name (defaults to the current directory name) [string]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--skip-skills Skip creating AI agent skill files (.agents/,
.claude/, .cursor/, .cursorignore, AGENTS.md,
CLAUDE.md) [boolean]
--template Template entry ID or template slug to use directly
and skip interactive guided template selection
[string]
--skip-install Skip the template's post-init setup command
[boolean]
Examples:
stripe projects build my-app Create a starter app with guided
setup
stripe projects build --template Create a starter app
stripe/nextjs-saas --json --yes non-interactively from a specific
--accept-tos template
===== stripe projects list --help =====
stripe projects list
List all projects you can access
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
===== stripe projects pull --help =====
stripe projects pull [projectId]
Pull an existing project into this folder
Positionals:
projectId Existing project ID to pull into this folder [string]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--skip-skills Skip creating AI agent skill files (.agents/,
.claude/, .cursor/, .cursorignore, AGENTS.md,
CLAUDE.md) [boolean]
===== stripe projects status --help =====
stripe projects status
View the current project, providers, and services
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
===== stripe projects services --help =====
stripe projects services
Show all services in your project
Commands:
stripe projects services list Show all services in your project
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
===== stripe projects services list --help =====
stripe projects services list
Show all services in your project
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
===== stripe projects catalog --help =====
stripe projects catalog [filter]
Browse services (filter by provider or category)
Positionals:
filter Category or provider name [string]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--refresh Refresh the catalog cache before listing [boolean]
Examples:
stripe projects catalog List all services grouped by category
stripe projects catalog database Show all services in one category
stripe projects catalog hostingco Show everything one provider offers
===== stripe projects search --help =====
stripe projects search <query..>
Search services by name, description, or category
Positionals:
query Search query [array] [required] [default: []]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--refresh Refresh the catalog cache before searching
[boolean]
Examples:
stripe projects search postgres Find database services related to postgres
stripe projects search hosting Find services by category or provider
===== stripe projects switch-account --help =====
stripe projects switch-account
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
===== stripe projects add --help =====
stripe projects add [service]
Positionals:
service Provider/service, bare provider, or @category (e.g.,
databaseco/postgres, databaseco, @database) [string]
Options:
--color turn on/off color output (on, off, auto) [string]
--config Service configuration as a JSON string [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without
prompting [boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents)[boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--name Logical resource name used for local resource
references and environment variable prefixes
[string]
--provider-config Provider configuration as a JSON string for
provider linking [string]
--provider-info Additional information required by the provider
as a JSON string (used when the provider requests
extra details during linking) [string]
--resource-info Additional information required to complete
provisioning as a JSON string [string]
--resource-id Existing provisioning resource ID to resume when
supplying --resource-info in non-interactive
workflows [string]
--existing Link an existing resource instead of provisioning
a new one [boolean]
--force-provider-relink Force a fresh provider link request before
provisioning [boolean]
--parent Enable automatic parent service detection for
component services [boolean]
--preflight Check all preconditions (auth, project, provider
link, plan dependencies) without provisioning.
Reports all blockers at once. [boolean]
Examples:
stripe projects add databaseco/postgres Provision a named service resource
--name primary-db
stripe projects add databaseco/postgres Provision a service with JSON
--config '{"region":"iad1"}' configuration
stripe projects add databaseco/postgres Provision a service while supplying
--provider-config '{"region":"US"}' provider link configuration
stripe projects add databaseco Choose one of a provider’s services
interactively
stripe projects add @database Choose a service from a category
across providers
===== stripe projects update --help =====
stripe projects update <service_reference> [service]
Positionals:
service_reference Existing local resource name or unique provider/service
reference [string] [required]
service New same-provider service id, provider/service, bare
provider, or @category [string]
Options:
--color turn on/off color output (on, off, auto) [string]
--config Service configuration as a JSON string [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
Examples:
stripe projects update free pro Switch a resource to another service
in the same provider
stripe projects update primary-db Choose a replacement service from a
@database category within the current provider
===== stripe projects upgrade --help =====
stripe projects upgrade <service_reference> [service]
Positionals:
service_reference Existing local resource name or unique provider/service
reference [string] [required]
service New same-provider service id, provider/service, bare
provider, or @category [string]
Options:
--color turn on/off color output (on, off, auto) [string]
--config Service configuration as a JSON string [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
Examples:
stripe projects upgrade free pro Switch a resource to another service
in the same provider
stripe projects upgrade primary-db Choose a replacement service from a
@database category within the current provider
===== stripe projects downgrade --help =====
stripe projects downgrade <service_reference> [service]
Positionals:
service_reference Existing local resource name or unique provider/service
reference [string] [required]
service New same-provider service id, provider/service, bare
provider, or @category [string]
Options:
--color turn on/off color output (on, off, auto) [string]
--config Service configuration as a JSON string [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
Examples:
stripe projects downgrade free pro Switch a resource to another service
in the same provider
stripe projects downgrade primary-db Choose a replacement service from a
@database category within the current provider
===== stripe projects remove --help =====
stripe projects remove <resource>
Positionals:
resource Resource name or unique provider/service reference
[string] [required]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--force Remove even when dependent resources are still
deployed [boolean]
--only-credentials Unlink credentials for the resource instead of
deprovisioning it [boolean]
Examples:
stripe projects remove primary-db Remove a named resource after
confirmation
stripe projects remove primary-db --yes Skip the confirmation prompt
stripe projects remove primary-db Forget the local resource after
--only-credentials --yes unlinking its credentials
stripe projects remove Remove a service when that
hostingco/postgres --yes provider/service matches exactly one
local resource
stripe projects remove shared-plan --yes Remove a parent resource even when
--force dependent resources are still
deployed
===== stripe projects rotate --help =====
stripe projects rotate <resource>
Positionals:
resource Resource name or unique provider/service reference
[string] [required]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
Examples:
stripe projects rotate primary-db Rotate credentials for a named
resource
stripe projects rotate Rotate credentials when that
databaseco/postgres provider/service matches exactly one
local resource
===== stripe projects link --help =====
stripe projects link <provider>
Positionals:
provider Provider name [string] [required]
Options:
--color turn on/off color output (on, off, auto) [string]
--config Provider configuration as a JSON string [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--force Force a fresh provider re-link request [boolean]
--provider-info Additional information required by the provider as
a JSON string (used when the provider requests
extra details during linking) [string]
Examples:
stripe projects link hostingco Link one provider account
stripe projects link databaseco --config Link a provider with JSON
'{"region":"US"}' configuration
stripe projects link databaseco Provide additional information
--provider-info '{"org_id":"abc123"}' requested by the provider
===== stripe projects unlink --help =====
stripe projects unlink <provider>
Positionals:
provider Provider name [string] [required]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
Examples:
stripe projects unlink databaseco Unlink a provider account after
confirmation
stripe projects unlink databaseco --yes Skip the confirmation prompt and
unlink a provider account
===== stripe projects open --help =====
stripe projects open <provider>
Positionals:
provider Provider name [string] [required]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
Examples:
stripe projects open databaseco Open a provider dashboard link in your
browser
===== stripe projects env --help =====
stripe projects env
Manage environment variables and configuration
Commands:
stripe projects env list List all project environments
stripe projects env show Show the active project environment
stripe projects env create <environment> Create a project environment;
requires --output
stripe projects env use <environment> Make a project environment active
stripe projects env update Rename the active environment or
change its output file
stripe projects env delete <environment> Delete a project environment
stripe projects env add <member> Add an existing resource or project
variable to the active environment
stripe projects env remove <member> Remove resource or project variable
membership from the active
environment
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--provider Show variables from only this provider [string]
--refresh Fetch the latest environment variables and refresh
the local cache [boolean]
--pull Write the latest environment variables to local
files [boolean]
--combined Compatibility flag; combined credentials are
always written to .env [boolean]
--service Show variables from only this provider/service
reference [string]
Examples:
stripe projects env List environment variables with
redacted values
stripe projects env --service Show redacted values for one service
databaseco/postgres
stripe projects env --refresh Refresh the local environment cache
from Stripe first
stripe projects env --pull Write the latest environment
variables to local files
stripe projects env list List all project environments
stripe projects env show Show the active project environment
stripe projects env create dev --output Create a project environment
.env.dev
stripe projects env update --output Update the active project
.env.dev environment
stripe projects env delete dev Delete a project environment
stripe projects env add primary-db Add an existing resource to the
active environment
stripe projects env add api-url-dev Add a project variable to the active
--variable --env-key API_URL environment
===== stripe projects env list --help =====
stripe projects env list
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--provider Show variables from only this provider [string]
--refresh Fetch the latest environment variables and refresh
the local cache [boolean]
--pull Write the latest environment variables to local
files [boolean]
--combined Compatibility flag; combined credentials are
always written to .env [boolean]
--service Show variables from only this provider/service
reference [string]
===== stripe projects env show --help =====
stripe projects env show
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--provider Show variables from only this provider [string]
--refresh Fetch the latest environment variables and refresh
the local cache [boolean]
--pull Write the latest environment variables to local
files [boolean]
--combined Compatibility flag; combined credentials are
always written to .env [boolean]
--service Show variables from only this provider/service
reference [string]
===== stripe projects env create --help =====
stripe projects env create <environment> --output <path>
Positionals:
environment Environment name [string] [required]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--provider Show variables from only this provider [string]
--refresh Fetch the latest environment variables and refresh
the local cache [boolean]
--pull Write the latest environment variables to local
files [boolean]
--combined Compatibility flag; combined credentials are
always written to .env [boolean]
--service Show variables from only this provider/service
reference [string]
--output Root env file for this environment, for example
.env.dev [string] [required]
===== stripe projects env use --help =====
stripe projects env use <environment>
Positionals:
environment Environment name [string] [required]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--provider Show variables from only this provider [string]
--refresh Fetch the latest environment variables and refresh
the local cache [boolean]
--pull Write the latest environment variables to local
files [boolean]
--combined Compatibility flag; combined credentials are
always written to .env [boolean]
--service Show variables from only this provider/service
reference [string]
===== stripe projects env update --help =====
stripe projects env update [--name <name>] [--output <path>]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--provider Show variables from only this provider [string]
--refresh Fetch the latest environment variables and refresh
the local cache [boolean]
--pull Write the latest environment variables to local
files [boolean]
--combined Compatibility flag; combined credentials are
always written to .env [boolean]
--service Show variables from only this provider/service
reference [string]
--name New active environment name [string]
--output New root env file for the active environment
[string]
===== stripe projects env delete --help =====
stripe projects env delete <environment>
Positionals:
environment Environment name [string] [required]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--provider Show variables from only this provider [string]
--refresh Fetch the latest environment variables and refresh
the local cache [boolean]
--pull Write the latest environment variables to local
files [boolean]
--combined Compatibility flag; combined credentials are
always written to .env [boolean]
--service Show variables from only this provider/service
reference [string]
===== stripe projects env add --help =====
stripe projects env add <name> [--resource | --variable --env-key <key>]
Positionals:
member Resource name, unique provider/service reference, or variable name
[string] [required]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--provider Show variables from only this provider [string]
--refresh Fetch the latest environment variables and refresh
the local cache [boolean]
--pull Write the latest environment variables to local
files [boolean]
--combined Compatibility flag; combined credentials are
always written to .env [boolean]
--service Show variables from only this provider/service
reference [string]
--env-key Environment variable key to write for a project
variable [string]
--resource Treat <name> as a resource [boolean]
--variable Treat <name> as a project variable [boolean]
===== stripe projects env remove --help =====
stripe projects env remove <name> [--resource | --variable]
Positionals:
member Resource name, unique provider/service reference, or variable name
[string] [required]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--provider Show variables from only this provider [string]
--refresh Fetch the latest environment variables and refresh
the local cache [boolean]
--pull Write the latest environment variables to local
files [boolean]
--combined Compatibility flag; combined credentials are
always written to .env [boolean]
--service Show variables from only this provider/service
reference [string]
--resource Treat <name> as a resource [boolean]
--variable Treat <name> as a project variable [boolean]
===== stripe projects variables --help =====
stripe projects variables
Manage project variables
Commands:
stripe projects variables set <name> Set a backend-backed project variable
for the active environment
stripe projects variables list List project variables and local
environment bindings
stripe projects variables delete <name> Delete a project variable and its
local bindings
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
===== stripe projects variables set --help =====
stripe projects variables set <name> --env-key <ENV_KEY> [--value <value>]
Positionals:
name Project variable name [string] [required]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--env-key Environment variable key to write during env pull
[string] [required]
--value Variable value. If omitted in interactive mode,
prompts securely. [string]
===== stripe projects variables list --help =====
stripe projects variables list
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
===== stripe projects variables delete --help =====
stripe projects variables delete <name>
Positionals:
name Project variable name [string] [required]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
===== stripe projects llm-context --help =====
stripe projects llm-context
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--fetch Fetch URL-based provider guidance and print the
contents inline [boolean]
--provider Filter by provider name [string]
--refresh Refresh the catalog cache before listing [boolean]
Examples:
stripe projects llm-context Print guidance for active project
providers
stripe projects llm-context --provider Print one provider guidance URL
chroma
stripe projects llm-context --fetch Fetch active provider guidance and
print it inline
===== stripe projects billing --help =====
stripe projects billing
Manage billing for your Stripe projects account
Commands:
stripe projects billing show View your current payment details
stripe projects billing add Add or update your billing method
stripe projects billing update Update your billing method, global or
per-provider spending limits
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
Examples:
stripe projects billing show View the current billing method
stripe projects billing add Create a browser session to add or
update billing
stripe projects billing update --limit Set a per-provider spending limit
50 --provider neon
===== stripe projects billing show --help =====
stripe projects billing show
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
===== stripe projects billing add --help =====
stripe projects billing add
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
Examples:
stripe projects billing add Create a checkout session to add or update your
billing method
===== stripe projects billing update --help =====
stripe projects billing update [--limit <amount>] [--provider <name>]
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
--limit Set the monthly spending limit in USD (e.g., 100
for $100) [number]
--provider Apply the limit to a specific provider instead of
globally [string]
Examples:
stripe projects billing update Interactively update billing or
spending limit
stripe projects billing update --limit Set global spending limit to
250 $250/month
stripe projects billing update --limit Set spending limit for Neon to
50 --provider neon $50/month
===== stripe projects spend --help =====
stripe projects spend
View charges on your account
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]
===== stripe projects feedback --help =====
stripe projects feedback
Send feedback about Stripe Projects
Options:
--color turn on/off color output (on, off, auto) [string]
-h, --help Show help [boolean]
-v, --version Show the current plugin version [boolean]
--accept-tos Accept provider terms of service without prompting
[boolean]
--confirm-paid-service Confirm willingness to provision a paid service
(required in non-interactive mode) [boolean]
--json Output structured JSON and suppress interactive
prompts (ideal for scripting and agents) [boolean]
-y, --yes Skip confirmation prompts (required for
non-interactive destructive commands) [boolean]
--interactive Allow interactive prompts (disable with
--non-interactive for scripting and agent use)
[boolean]
--stream Enable streaming output animations [boolean]
--debug Enable debug logging for Stripe API requests
[boolean]