stripe-projects

Provision SaaS services and sync credentials via the Stripe Projects CLI plugin.

1|Updated Jun 19, 2026
One-click install
npx skills add https://github.com/Lento47/arcana-community --skill stripe-projects-lento47
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: stripe-projects
Source: https://github.com/Lento47/arcana-community/tree/main/skills/payments/stripe-projects
Command: npx skills add https://github.com/Lento47/arcana-community --skill stripe-projects-lento47

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Setting up third-party services like databases, SMS, or hosting normally requires creating accounts, generating API keys, and manually copying credentials into environment files. This Skill automates that entire provisioning workflow through the Stripe Projects CLI, writing credentials directly into your project's .env file. ## Core Features & Use Cases - Service Provisioning: Add providers like Neon Postgres, Twilio SMS, or Vercel hosting with a single command that creates the resource in your own provider account. - Credential Sync: Automatically generates API keys and writes them into the project's .env file, with an encrypted vault at .projects/vault/vault.json. - Lifecycle Management: Upgrade tiers, rotate credentials, or remove services across all providers from one CLI. - Use Case: You are starting a new SaaS project and need a Postgres database and SMS capability. Run the provisioning commands to get a Neon database and Twilio number configured with credentials in your .env within minutes. ## Quick Start Ask the agent to provision a Neon Postgres database for this project and sync the credentials into the .env file.

Frequently Asked Questions about stripe-projects

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I provision a Postgres database with Stripe Projects?▼

Run stripe projects init in your project root, then stripe projects add neon/postgres. The CLI provisions the database in your Neon account, generates credentials, and writes them into your .env file automatically.

What providers can I add with the Stripe Projects CLI?▼

Run stripe projects catalog to list all supported providers, including databases, hosting, auth, AI, analytics, and messaging services. If a provider is not listed, grep the catalog output before attempting to add it.

Does Stripe Projects work on Windows?▼

This Skill is gated to Linux and macOS platforms, though the Stripe CLI itself is cross-platform. The gate is a posture for the payments skill cluster rather than a hard technical limitation.

Is it safe for Stripe Projects to write credentials into .env?▼

The CLI appends plaintext credentials to the .env file in your project root, so verify .env is listed in .gitignore before provisioning. The vault at .projects/vault/vault.json is encrypted, but the .env file is not.

Does removing a service delete the underlying resource?▼

Not always. Some providers leave a paused or dormant resource behind after stripe projects remove. Check the provider's own dashboard afterward, especially for high-cost services like managed databases.