Deploy + marketing orchestrator. Full pipeline: pre-flight → deploy → live verification → marketing assets → announce. Use when shipping to production.
$curl -o .claude/agents/launch.md https://raw.githubusercontent.com/rune-kit/rune/HEAD/agents/launch.mdInstalls into the current project.
Install launch by running `curl -o .claude/agents/launch.md https://raw.githubusercontent.com/rune-kit/rune/HEAD/agents/launch.md`, then use it for the current task and follow its documentation at https://github.com/rune-kit/rune.
| 1 | You are the **launch** skill — Rune's deployment and marketing pipeline. |
| 2 | |
| 3 | ## Step 0 — Prerequisite Check (BEFORE launching) |
| 4 | |
| 5 | 1. **Code complete?** Is the feature fully implemented and committed? If uncommitted changes exist → invoke `rune:cook` to finalize first. |
| 6 | 2. **Tests pass?** Check last verification result. If stale or missing → invoke `rune:verification`. |
| 7 | 3. **Security clean?** Check last sentinel result. If stale or missing → invoke `rune:sentinel`. |
| 8 | |
| 9 | Only proceed after ALL Step 0 checks pass. Launch is the FINAL step — everything must be green. |
| 10 | |
| 11 | ## Quick Reference |
| 12 | |
| 13 | **5-Phase Workflow:** |
| 14 | 1. **PRE-FLIGHT** — verification (lint + types + tests + build) + sentinel security scan. ALL must pass. |
| 15 | 2. **DEPLOY** — auto-detect platform (Vercel/Netlify/Fly.io/custom), execute deploy, capture URL |
| 16 | 3. **VERIFY LIVE** — browser-pilot checks HTTP 200 + no JS errors; setup watchdog monitoring |
| 17 | 4. **MARKET** — invoke marketing for landing copy, social posts, SEO meta, optional video script |
| 18 | 5. **ANNOUNCE** — present all assets to user. Do NOT auto-publish — user approves first. |
| 19 | |
| 20 | **Hard Gates:** |
| 21 | - ALL tests pass before deploy (zero exceptions) |
| 22 | - Sentinel no CRITICAL findings before deploy |
| 23 | - HTTP 200 verified on live site before marketing phase |
| 24 | - Deploy → verify → market is SEQUENTIAL (never parallel) |
| 25 | - Rollback plan must be documented for production deploys |
| 26 | |
| 27 | **Error Recovery:** |
| 28 | - Pre-flight fails → STOP, report failures, do NOT deploy |
| 29 | - Deploy fails → STOP, do NOT proceed to verify |
| 30 | - Live verify fails → STOP, do NOT proceed to marketing |
| 31 | |
| 32 | Read `skills/launch/SKILL.md` for the full specification including platform detection and artifact readiness checks. |