website/docs/user-guide/skills/optional/payments/payments-stripe-projects.md
Provision SaaS services + sync creds via Stripe Projects.
| Source | Optional — install with hermes skills install official/payments/stripe-projects |
| Path | optional-skills/payments/stripe-projects |
| Version | 0.1.0 |
| Author | Teknium (teknium1), Hermes Agent |
| License | MIT |
| Platforms | linux, macos |
| Tags | Payments, Stripe, Projects, Provisioning, Infrastructure |
| Related skills | stripe-link-cli, mpp-agent |
:::info The following is the complete skill definition that Hermes loads when this skill is triggered. This is what the agent sees as instructions when the skill is active. :::
Wraps the Stripe Projects CLI plugin so Hermes can provision SaaS services (Neon, Twilio, Vercel, etc.), generate and sync credentials into the user's .env, and manage billing across providers from one place.
Gated [linux, macos] while the broader payments cluster matures on Windows. The Stripe CLI itself is cross-platform; this gate is a posture for the cluster, not a hard limit.
Trigger phrases:
If the user already has a provider account, this skill can still connect it with stripe projects link <provider>. If the user wants to use an existing provider resource, such as an existing database or Vercel project, check provider support first; many providers currently support provisioning new resources but not importing existing ones.
macOS:
brew install stripe/stripe-cli/stripe
stripe plugin install projects
Linux: follow the platform-specific install at https://docs.stripe.com/stripe-cli/install, then:
stripe plugin install projects
All commands run through the terminal tool from inside the user's project directory (the CLI writes .env and .projects/vault/vault.json into the CWD).
cd <project-root>
stripe projects init
This creates .projects/vault/vault.json (encrypted credential store) and prepares the project to receive providers.
stripe projects catalog
Lists every provider Stripe Projects supports — databases, hosting, auth, AI, analytics, messaging, etc.
stripe projects add <provider>/<service>
Examples:
stripe projects add neon/postgresstripe projects add twilio/smsstripe projects add runloop/sandboxThe CLI provisions the service in the user's own account with the provider, generates credentials, syncs them into .env, and records the resource in the vault. The user may need to confirm a tier selection or pricing prompt.
stripe projects list
Should show the newly added provider and its .env keys.
stripe projects upgrade <provider> # tier change
stripe projects remove <provider> # deprovision
stripe projects rotate <provider> # rotate credentials
.env writes are real writes. The CLI appends to whatever .env is in the project root. If the user's .env is gitignored (normal), the keys land safely; if not, this skill could be a credential-leak vector. Always check .gitignore first..projects/vault/vault.json is per-project. Provisioning the same service in two different projects creates two separate resources — and two bills.add/upgrade are real charges; surface them to the user before confirming.stripe projects catalog | grep <name> first instead of failing the add call..env is plaintext. Standard .env hygiene applies — never commit it.remove for high-cost services (managed databases especially).stripe projects --version && stripe projects list
Exit code 0 inside an initialized project means the plugin is healthy.