Launch — One-Step SaaS Shipping Pipeline
A VibesOS pipeline skill that turns one idea prompt into a live SaaS app with auth, multi-tenancy, billing and Cloudflare deployment.
Dev & CodingIntermediate★ 133⑂ 5AI score 8/10Last updated: Jul 27, 2026
What it does
- Fires on requests like "launch", "ship it", or "build and deploy" and runs the whole product pipeline as a single, non-decomposable step.
- Asks first whether you want the Editor (browser UI with live preview and deploy button) or Terminal mode, then silently checks cached Vibes auth tokens.
- Collects app prompt, app name/slug (subdomain + database), optional AI features (OpenRouter key detection by keyword), billing mode (free vs subscription), title, tagline, subtitle and 3–5 feature bullets.
- Spawns a builder teammate via Agent Teams to generate
app.jsx, runsassemble-factory.jsto wire tenant routing, auth gating and billing, thendeploy-cloudflare.jsto ship a Cloudflare Worker. - Finishes with URL verification, team shutdown, a deployment summary, and an error-recovery table for invalid JSX, unreplaced placeholders, and auth failures.
Who it's for
- Indie hackers building on the VibesOS / vibes.diy stack.
- Solo developers tired of rebuilding auth, multi-tenancy and billing scaffolding.
- Anyone wanting a real-world example of Claude Code Agent Teams parallelization.
Examples
- "Build a team dashboard and ship it" → auto-generated slug, free billing mode, deployed to
teamdash.vibes.diy. - "Launch a notes app with AI summaries, subscription only" → AI keyword detected, OpenRouter key collected, billing set to required with marketing-grade pricing copy.
- "Let me see it before deploying" → local preview server at
localhost:3333, iterate on design via chat, then continue to assembly and deploy.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/popmechanic/VibesOS/HEAD/skills/launch/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/launch folder from the GitHub repo popmechanic/VibesOS into my ~/.claude/skills/launch/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/popmechanic/VibesOS.git && mkdir -p ~/.claude/skills && cp -r VibesOS/skills/launch ~/.claude/skills/launch⚠ This is a third-party skill. Check the source repository before installing.
- Prerequisites: Claude Code with Agent Teams support, the
bunruntime, and a Vibes account (browser login on first deploy). - Clone the repo:
git clone https://github.com/popmechanic/VibesOS.git - Copy the skill:
mkdir -p ~/.claude/skills && cp -r VibesOS/skills/launch ~/.claude/skills/launch- The skill calls scripts from the repo's
scripts/folder (server.ts, assemble-factory.js, deploy-cloudflare.js), so installing the full VibesOS plugin is the safer route.
- The skill calls scripts from the repo's
- Verify bun with
bun --version; install it viacurl -fsSL https://bun.sh/install | bashif missing. - Restart Claude Code and say: "launch a SaaS app from my idea".
- On the first question pick Editor for the browser UI or Terminal for the guided step-by-step flow, and sign in through the Pocket ID window that opens on your first deploy.
View source on GitHub ↗License: MIT