
Stripe Projects
- 3 installs
- 226k repo stars
- Updated August 5, 2026
- nousresearch/hermes-agent
Provision SaaS services like Neon, Twilio, and Vercel via the Stripe Projects CLI, then generate and sync credentials into the project .env from one place.
About
Wraps the Stripe Projects CLI plugin so an agent can provision SaaS services (Neon, Twilio, Vercel, etc.), generate and sync credentials into the user's .env, and manage billing across providers. A developer uses it to set up a provider, create a database, rotate a key, or manage stack credentials.
- Provisions Neon, Twilio, Vercel and other providers via one CLI
- Syncs generated credentials into the project .env and vault
Stripe Projects by the numbers
- 3 all-time installs (skills.sh)
- Ranked #1,119 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/nousresearch/hermes-agent --skill stripe-projectsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 3 |
|---|---|
| repo stars | ★ 226k |
| Last updated | August 5, 2026 |
| Repository | nousresearch/hermes-agent ↗ |
What it does
Provision SaaS services like Neon, Twilio, and Vercel via the Stripe Projects CLI, then generate and sync credentials into the project .env from one place.
Files
Stripe Projects Skill
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.
When to Use
Trigger phrases:
- "set up <provider>", "provision <Neon|Twilio|Vercel|...>", "create a database"
- "give me a <Postgres|Redis|Twilio number|...> for this project"
- "manage my stack credentials", "rotate this key", "upgrade my plan"
- "what providers can I add?"
If the user already has the service set up manually and just wants to use it, this skill is not the right entry point.
Prerequisites
- Stripe CLI installed (Homebrew on macOS, package manager on Linux, or download from https://docs.stripe.com/stripe-cli/install)
- Stripe Projects plugin installed
- A Stripe account, logged in via
stripe login
Install
macOS:
brew install stripe/stripe-cli/stripe
stripe plugin install projectsLinux: follow the platform-specific install at https://docs.stripe.com/stripe-cli/install, then:
stripe plugin install projectsHow to Run
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).
Procedure
1. Initialize the project
cd <project-root>
stripe projects initThis creates .projects/vault/vault.json (encrypted credential store) and prepares the project to receive providers.
2. Discover available providers
stripe projects catalogLists every provider Stripe Projects supports — databases, hosting, auth, AI, analytics, messaging, etc.
3. Add a service
stripe projects add <provider>/<service>Examples:
stripe projects add neon/postgresstripe projects add twilio/smsstripe projects add runloop/sandbox
The 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.
4. Verify
stripe projects listShould show the newly added provider and its .env keys.
5. Manage / upgrade / remove
stripe projects upgrade <provider> # tier change
stripe projects remove <provider> # deprovision
stripe projects rotate <provider> # rotate credentialsPitfalls
- `.env` writes are real writes. The CLI appends to whatever
.envis in the project root. If the user's.envis gitignored (normal), the keys land safely; if not, this skill could be a credential-leak vector. Always check.gitignorefirst. - Per-project state.
.projects/vault/vault.jsonis per-project. Provisioning the same service in two different projects creates two separate resources — and two bills. - Billing happens on Stripe's side. Tier prompts during
add/upgradeare real charges; surface them to the user before confirming. - Provider availability changes. The catalog grows; if a provider the user names isn't listed,
stripe projects catalog | grep <name>first instead of failing theaddcall. - Credentials in vault are encrypted but `.env` is plaintext. Standard
.envhygiene applies — never commit it. - Removing a service does NOT always destroy the underlying resource. Some providers leave a paused/dormant resource behind. Check the provider's own dashboard after
removefor high-cost services (managed databases especially).
Verification
stripe projects --version && stripe projects listExit code 0 inside an initialized project means the plugin is healthy.