بنقرة واحدة
stripe-projects
Provision SaaS services + sync creds via Stripe Projects.
القائمة
Provision SaaS services + sync creds via Stripe Projects.
Shop catalog search, checkout, order tracking, returns.
Pay HTTP 402 APIs via Machine Payments Protocol (MPP).
Agent payments via Stripe Link — cards, SPT, approvals.
YouTube transcripts to summaries, threads, blogs.
Hyperliquid market data, account history, trade review.
Plan, set up, and monitor a multi-agent video production pipeline backed by Hermes Kanban. Use when the user wants to make ANY video — narrative film, product/marketing, music video, explainer, ASCII/terminal art, abstract/generative loop, comic, 3D, real-time/installation — and the work warrants decomposition into specialized profiles (writer, designer, animator, renderer, voice, editor, etc.) coordinated through a kanban board. Performs adaptive discovery to scope the brief, designs an appropriate team for the requested style, generates the setup script that creates Hermes profiles + initial kanban task, then helps monitor execution and intervene when tasks stall or fail. Routes scenes to whichever Hermes rendering / audio / design skill fits each beat (`ascii-video`, `manim-video`, `p5js`, `comfyui`, `touchdesigner-mcp`, `blender-mcp`, `pixel-art`, `baoyu-comic`, `claude-design`, `excalidraw`, `songsee`, `heartmula`, …) plus external APIs for TTS, image-gen, and image-to-video as needed.
| name | stripe-projects |
| description | Provision SaaS services + sync creds via Stripe Projects. |
| version | 0.1.0 |
| author | Teknium (teknium1), Hermes Agent |
| license | MIT |
| platforms | ["linux","macos"] |
| metadata | {"hermes":{"tags":["Payments","Stripe","Projects","Provisioning","Infrastructure"],"related_skills":["stripe-link-cli","mpp-agent"]}} |
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 the service set up manually and just wants to use it, this skill is not the right entry point.
stripe loginmacOS:
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.