Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Provision SaaS services + sync creds via Stripe Projects.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-06 | ✗→✓ | ▲ Improved | 66% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -53% | 0% |
| case-08 | ✗→✓ | ▲ Improved | -10% | 0% |
| case-09 | ✗→✓ | ▲ Improved | -17% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 5% | 0% |
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 projectsLinux: follow the platform-specific install at https://docs.stripe.com/stripe-cli/install, then:
stripe plugin install projectsAll 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 initThis creates .projects/vault/vault.json (encrypted credential store) and prepares the project to receive providers.
stripe projects catalogLists 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 listShould 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 listExit code 0 inside an initialized project means the plugin is healthy.
Other measured skills in the registry, with their headline benchmark lift.