← ClaudeAtlas

release-readinesslisted

The go/no-go gate before shipping — a structured launch checklist across security, data, legal, operations, performance, accessibility and rollback, producing an explicit ship or do-not-ship decision with named blockers. Use when the user says "ready to launch", "go live", "ship it", "pre-launch", "launch checklist", "release checklist", "production ready", "deploy to production", "v1", "MVP launch", "are we ready" or "what's left before we ship"; and after any project audit, to convert findings into a gate. By Devleck.
Kin9Zeus/senior-engineer-skills · ★ 3 · Data & Documents · score 77
Install: claude install-skill Kin9Zeus/senior-engineer-skills
# Release Readiness The purpose of a gate is to make a decision **explicit** rather than implicit. Shipping with known gaps is legitimate — shipping without knowing what they are is not. Produce one of three verdicts, in writing: ``` GO No blockers. Ship. GO WITH RISK Named, accepted, owned risks. Ship, with mitigations listed. NO GO Named blockers. Do not ship until these close. ``` Never soften a `NO GO` into "mostly ready". If a blocker is real, say so in the first line and name it. --- ## The blockers — any one of these is `NO GO` These are not judgement calls. Each one causes a breach, data loss, or a legal exposure that the launch cannot be undone from. - [ ] **A secret is in the repository or its git history.** Rotate first, then purge. - [ ] **Any user can access another user's data.** Test it: authenticate as A, request B's resource. - [ ] **No backups**, or backups that have never been restored. - [ ] **Personal data is processed with no privacy policy**, or a policy that omits a processor actually receiving data. - [ ] **No way to delete user data** when the policy or the law says there is. - [ ] **Payments where amounts are computed or trusted from the client.** - [ ] **A webhook that mutates state without verifying its signature.** - [ ] **String-interpolated SQL on a route reachable by a user.** - [ ] **Debug mode enabled**, or stack traces returned to clients. - [ ] **No rollback path** that anyone has ever ex