Workflow launch ready
🦖Curated Cursor AI agent skills, slash commands, MCP configs, subagents & rules for full-stack dev — React 19, Next.js 15, Supabase, Tailwind v4, TypeScript
npx -y skills add kensaurus/cursor-kenji --skill workflow-launch-readyAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Full launch preparation sweep for a new app or major release. One entry point that sequences enhance-web-seo, enhance-pwa, audit-bundle-size, audit-i18n, workflow-quality-gate, deploy-verify, and iterate-post-launch. Produces a launch checklist with all open items and a launch-readiness verdict. Use when "prepare for launch", "launch week", "everything before going live", "is the app launch-ready?", "pre-launch sweep", or "ship it to the world".
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
3.5 KB, 810 tokens by cl100k_base, as published. Nobody here has run it
workflow-launch-ready — Full Launch Preparation
The pre-launch sequence. Run once, get the complete picture across SEO, PWA, performance, quality, and post-launch monitoring.
Sweep sequence
1. SEO → enhance-web-seo (meta, OG, JSON-LD, sitemap, canonicals)
2. PWA → enhance-pwa (manifest, service worker, offline, install)
3. BUNDLE → audit-bundle-size (first-load JS ≤ 200 KB goal)
4. i18n → audit-i18n (if multi-locale: natural copy, no hardcoded strings)
5. QUALITY GATE → workflow-quality-gate (red-team + security + perf + unit tests)
6. DEPLOY → deploy-verify (post-deploy smoke after the release)
7. ITERATE → iterate-post-launch (close loop on day-1 production signals)
Skip steps 2 (PWA) and 4 (i18n) if not applicable — note the skip in the checklist.
Step 1: SEO (read enhance-web-seo)
Read the
enhance-web-seoskill and follow it.
Every public page needs: <title>, meta description, OG tags, canonical URL,
structured data (JSON-LD), and a sitemap entry.
Step 2: PWA (read enhance-pwa)
Read the
enhance-pwaskill and follow it.
Required: Web App Manifest + service worker with offline fallback. Lighthouse PWA score ≥ 90 before launch.
Step 3: Bundle size (read audit-bundle-size)
Read the
audit-bundle-sizeskill and follow it.
Target: first-load JS ≤ 200 KB gzip. All routes lazy-loaded.
Step 4: i18n (read audit-i18n — skip if single locale)
Read the
audit-i18nskill and follow it.
Priority: no hardcoded user-facing strings, natural copy in all supported locales, correct date/number/currency formatting.
Step 5: Quality gate (read workflow-quality-gate)
Read the
workflow-quality-gateskill and follow it.
This step runs test-red-team, audit-security, audit-performance, and test-unit internally. A NO-GO verdict from this step blocks launch.
Step 6: Deploy & smoke (read deploy-verify)
Read the
deploy-verifyskill and follow it.
Run immediately after the production deploy. Confirm no new Sentry errors, schema is healthy, and critical flows work.
Step 7: Day-1 iteration loop (read iterate-post-launch)
Read the
iterate-post-launchskill and follow it.
Schedule this 24–48 hours after launch. Pull first real-user signals and prioritize the first fix pass.
Launch checklist output
## Launch Readiness — [App] — [Date]
### Verdict: LAUNCH-READY / LAUNCH WITH CONDITIONS / NOT READY
| Step | Status | Open items |
|------|--------|------------|
| SEO | ✅ / ⚠️ / ❌ | [list] |
| PWA | ✅ / ⚠️ / ❌ / skipped | [list] |
| Bundle size | ✅ / ⚠️ / ❌ | [X KB] |
| i18n | ✅ / ⚠️ / skipped | [list] |
| Quality gate | GO / NO-GO / CONDITIONAL | [see gate report] |
| Deploy smoke | ✅ / ❌ | [notes] |
| Day-1 plan | scheduled / not yet | [date] |
### Blockers (must fix before launch)
[list]
### Post-launch backlog (fix within 48 h)
[list]
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.