Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

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 & CodingIntermediate1335AI 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, runs assemble-factory.js to wire tenant routing, auth gating and billing, then deploy-cloudflare.js to 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

  1. "Build a team dashboard and ship it" → auto-generated slug, free billing mode, deployed to teamdash.vibes.diy.
  2. "Launch a notes app with AI summaries, subscription only" → AI keyword detected, OpenRouter key collected, billing set to required with marketing-grade pricing copy.
  3. "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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Prerequisites: Claude Code with Agent Teams support, the bun runtime, and a Vibes account (browser login on first deploy).
  2. Clone the repo: git clone https://github.com/popmechanic/VibesOS.git
  3. 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.
  4. Verify bun with bun --version; install it via curl -fsSL https://bun.sh/install | bash if missing.
  5. Restart Claude Code and say: "launch a SaaS app from my idea".
  6. 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.