Agent skill · DevOps & Cloud

deploy-pipeline

Run end-to-end deploy pipelines across Stripe, Supabase, and Vercel using the Composio CLI. Promote Stripe products, push Supabase migrations, ship Vercel deployments, and verify with post-deploy checks — all from one script.

composio-communitygithub.com/composio-communityGitHub ↗
codex
Install
npx skills add composio-community/awesome-codex-skills --skill deploy-pipeline --agent codex

Same command for any agent — swap --agent for claude-code, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: deploy-pipeline/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 15,591
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Deploy Pipeline (Stripe / Supabase / Vercel) Coordinate staged releases across Stripe, Supabase, and Vercel from the shell using the [Composio CLI](https://docs.composio.dev/docs/cli). One script kicks off the whole "ship it" sequence: product/price updates, DB migrations, frontend deploy, smoke checks, changelog post. ## When to Use - Full-stack product launch that touches billing, database, and frontend together. - Promoting a preview Vercel build to production with a Stripe price flip and a Supabase migration. - Weekly release trains where the same sequence repeats and you want it reliable. ## Prereqs ```bash curl -fsSL https://composio.dev/install | bash composio login composio link stripe composio link supabase composio link vercel composio link slack # for release announcements ``` ## Discover Tools ```bash composio search "create price" --toolkits stripe composio search "apply migration" --toolkits supabase composio search "create deployment" --toolkits vercel composio tools list stripe composio tools list supabase composio tools list vercel ``` Common slugs (verify with `--get-schema`): **Stripe** - `STRIPE_CREATE_PRODUCT` - `STRIPE_CREATE_PRICE` - `STRIPE_UPDATE_PRODUCT`

What's inside
Steps it walks through
  1. When to Use
  2. Prereqs
  3. Discover Tools
  4. The Pipeline
  5. 1. Stripe: Create or Update the Price
  6. 2. Supabase: Apply Migrations
  7. 3. Vercel: Deploy + Promote
  8. 4. Verify
  9. 5. Announce
  10. Pipeline as a Workflow File
  11. Rollback Plan
  12. Troubleshooting
Commands it runs
curl -fsSL https://composio.dev/install | bash
composio login
composio link stripe
composio link supabase
composio link vercel
composio link slack        # for release announcements
composio search "create price" --toolkits stripe
composio search "apply migration" --toolkits supabase
composio search "create deployment" --toolkits vercel
composio tools list stripe
More from awesome-codex-skills
All skills →
About this skill
What does the deploy-pipeline skill do?

Run end-to-end deploy pipelines across Stripe, Supabase, and Vercel using the Composio CLI. Promote Stripe products, push Supabase migrations, ship Vercel deployments, and verify with post-deploy checks — all from one script.

How do I install it?

Run `npx skills add composio-community/awesome-codex-skills --skill deploy-pipeline --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From composio-community/awesome-codex-skills, a repository with 15,591 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going