---
name: launch-checklist
type: workflow
description: "Generates a comprehensive software launch checklist covering technical readiness, customer communications, support, and go-live steps. Use when preparing for a product launch or when the user mentions launch checklist or go-live readiness."
argument-hint: "[launch-date or 'dry-run']"
user-invocable: true
allowed-tools: Read, Glob, Grep, Write
effort: 3
when_to_use: "When preparing for a software product or feature launch and needing to validate all departments are ready"
When this skill is invoked:
Explicit invocation only: This skill should only run when the user explicitly requests it with /launch-checklist. Do not auto-invoke based on context matching.
Read the argument for the launch date or dry-run mode. Dry-run mode
generates the checklist without creating sign-off entries.
Gather project context:
- Read
CLAUDE.md for tech stack, release surfaces, and team structure
- Read the latest milestone in
production/milestones/
- Read any existing release checklist in
production/releases/
- Read any launch, support, or communications notes in
docs/launch/,
docs/runbooks/, or production/releases/ if they exist
Scan codebase health:
- Count
TODO, FIXME, HACK comments and their locations
- Check for any
console.log, print(), or debug output left in production code
- Check for placeholder assets or copy (search for
placeholder, temp_, WIP_)
- Check for hardcoded test/dev values (localhost, test credentials, debug flags)
Generate the launch checklist:
# Launch Checklist: [Product Title]
Target Launch: [Date or DRY RUN]
Generated: [Date]
---
## 1. Code Readiness
### Build Health
- [ ] Clean build or release artifact generated for all target surfaces
- [ ] Zero release-blocking compiler or linter errors
- [ ] All unit tests passing
- [ ] All integration tests passing
- [ ] End-to-end or smoke tests passing for critical user journeys
- [ ] Schema migrations tested with rollback or recovery plan
- [ ] Release version correctly set and tagged in source control
- [ ] Performance and reliability benchmarks within agreed targets
### Code Quality
- [ ] TODO count: [N] (zero required for launch, or documented exceptions)
- [ ] FIXME count: [N] (zero required)
- [ ] HACK count: [N] (each must have documented justification)
- [ ] No unintended debug output in production code
- [ ] No hardcoded dev/test values
- [ ] All feature flags reviewed for launch defaults
- [ ] Error handling covers all critical paths
- [ ] Crash reporting and structured logging integrated and verified
- [ ] Dependency vulnerabilities triaged and accepted risk documented
### Security and Privacy
- [ ] No exposed API keys or credentials in source or build artifacts
- [ ] Authentication, authorization, and input validation verified on public endpoints
- [ ] Network communication secured (TLS, signed webhooks, secret rotation as applicable)
- [ ] Abuse protection, rate limiting, or bot controls enabled where required
- [ ] Privacy policy and data handling compliance verified
- [ ] Backup and restore path validated for stateful systems
---
## 2. Product Readiness
### Functional Scope
- [ ] All launch-scope features implemented or explicitly deferred
- [ ] Critical user journeys tested end-to-end
- [ ] Admin, support, and internal operational workflows verified
- [ ] Billing, notifications, integrations, and webhooks tested if applicable
- [ ] Data import/export, retention, or deletion flows verified if applicable
- [ ] Release notes and known issues drafted
### UX, Content, and Localization
- [ ] All placeholder copy and visuals replaced
- [ ] All user-facing text proofread
- [ ] No hardcoded strings (all externalized for localization)
- [ ] All supported languages translated and verified
- [ ] Text fits UI in all supported languages
- [ ] Help content, onboarding, and empty states reviewed
- [ ] Customer-facing documentation links are current
---
## 3. Quality Assurance
### Testing
- [ ] Full regression test suite passed
- [ ] Zero Sev1 (Critical) bugs open
- [ ] Zero Sev2 (High/Major) bugs open, or documented exceptions with owner approval
- [ ] Smoke test passed in staging or release candidate environment
- [ ] User acceptance or stakeholder sign-off captured
- [ ] Edge cases tested (no network, expired session, low storage, rate limits, retries)
- [ ] Backup/restore or disaster recovery drill completed if applicable
### Accessibility and Compliance
- [ ] Accessibility basics covered for target surfaces
- [ ] Consent, privacy, and legal notices reviewed
- [ ] Audit logging or regulated workflow checks verified if required
- [ ] App store or platform policy requirements met, if applicable
### Performance and Reliability
- [ ] Response time or startup time within budget
- [ ] Memory and CPU usage within budget
- [ ] Queue lag, background jobs, and async workflows within targets
- [ ] No sustained error-rate spikes during release candidate soak window
- [ ] Capacity and scaling assumptions reviewed for launch traffic
---
## 4. Distribution and Customer-Facing Assets
### Release Assets
- [ ] Changelog complete and proofread
- [ ] Release notes complete and customer-appropriate
- [ ] Version numbers aligned across app, API, docs, and packaging
- [ ] Download links, package names, or deployment targets finalized
### Launch Communications
- [ ] Status page messaging prepared
- [ ] Customer announcement drafted
- [ ] In-app banner, modal, or changelog entry prepared if needed
- [ ] Support macros / FAQ updated
- [ ] Sales, customer success, and internal stakeholders briefed
### Public Metadata
- [ ] Marketing site or product page copy updated
- [ ] Screenshots or release visuals current
- [ ] Pricing, packaging, and plan entitlements verified
- [ ] App store listing metadata current, if applicable
---
## 5. Infrastructure
### Production Readiness
- [ ] Production infrastructure provisioned and sized for launch
- [ ] Database backups configured and restore tested
- [ ] CDN, cache invalidation, and asset delivery configured where applicable
- [ ] Feature flag rollout strategy documented
- [ ] Secrets and access reviews completed
- [ ] Deployment and rollback runbooks current
### Analytics and Monitoring
- [ ] Analytics pipeline verified and receiving expected events
- [ ] Crash reporting active and dashboard accessible
- [ ] Monitoring dashboards live for core technical and business metrics
- [ ] Alerts configured for critical thresholds
- [ ] Incident escalation path and owners documented
---
## 6. Support and Operations
### Team Readiness
- [ ] On-call schedule set for first 72 hours post-launch
- [ ] Incident response playbook reviewed by the team
- [ ] Hotfix pipeline tested
- [ ] Communication plan for launch issues documented
- [ ] Support team briefed on known issues and escalation path
### Launch Day Plan
- [ ] Go-live sequence documented step by step
- [ ] Rollback decision criteria documented
- [ ] War room or launch channel established
- [ ] Launch monitoring dashboard bookmarked by all leads
- [ ] Checkpoint times defined for launch-day review
---
## Go / No-Go Decision
**Overall Status**: [READY / NOT READY / CONDITIONAL]
### Blocking Items
[List any items that must be resolved before launch]
### Conditional Items
[List items that have documented workarounds or accepted risk]
### Sign-Offs Required
- [ ] Product Owner - Scope and customer readiness
- [ ] Engineering Lead - Technical health and stability
- [ ] QA Lead - Quality and test coverage
- [ ] Release Manager - Deployment and rollback readiness
- [ ] Security / Compliance Owner - Security and data handling
- [ ] Support Lead - Support and incident readiness
Save the checklist to
production/releases/launch-checklist-[date].md, creating directories as needed.
Output a summary to the user: total items, blocking items count,
conditional items count, departments with incomplete sections, and the file path.
Protocol
- Question: Reads launch date or
dry-run argument; gathers context from CLAUDE.md and milestone files
- Options: Skip
- Decision: Skip - checklist is generated; Go/No-Go is advisory
- Draft: Summary statistics shown before saving
- Approval: "May I write to
production/releases/launch-checklist-[date].md?"
Output
Deliver exactly:
- Checklist file saved to
production/releases/launch-checklist-[date].md
- Summary: total items / blocking count / conditional count / incomplete departments
- Verdict:
GO / CONDITIONAL GO / NO-GO with blocking items listed
1---2name: launch-checklist3description: ---4---5---6name: launch-checklist7type: workflow8description: "Generates a comprehensive software launch checklist covering technical readiness, customer communications, support, and go-live steps. Use when preparing for a product launch or when the user mentions launch checklist or go-live readiness."9argument-hint: "[launch-date or 'dry-run']"10user-invocable: true11allowed-tools: Read, Glob, Grep, Write12effort: 313when_to_use: "When preparing for a software product or feature launch and needing to validate all departments are ready"14---1516When this skill is invoked:1718> **Explicit invocation only**: This skill should only run when the user explicitly requests it with `/launch-checklist`. Do not auto-invoke based on context matching.19201. **Read the argument** for the launch date or `dry-run` mode. Dry-run mode21 generates the checklist without creating sign-off entries.22232. **Gather project context**:24 - Read `CLAUDE.md` for tech stack, release surfaces, and team structure25 - Read the latest milestone in `production/milestones/`26 - Read any existing release checklist in `production/releases/`27 - Read any launch, support, or communications notes in `docs/launch/`,28 `docs/runbooks/`, or `production/releases/` if they exist29303. **Scan codebase health**:31 - Count `TODO`, `FIXME`, `HACK` comments and their locations32 - Check for any `console.log`, `print()`, or debug output left in production code33 - Check for placeholder assets or copy (search for `placeholder`, `temp_`, `WIP_`)34 - Check for hardcoded test/dev values (localhost, test credentials, debug flags)35364. **Generate the launch checklist**:3738```markdown39# Launch Checklist: [Product Title]40Target Launch: [Date or DRY RUN]41Generated: [Date]4243---4445## 1. Code Readiness4647### Build Health48- [ ] Clean build or release artifact generated for all target surfaces49- [ ] Zero release-blocking compiler or linter errors50- [ ] All unit tests passing51- [ ] All integration tests passing52- [ ] End-to-end or smoke tests passing for critical user journeys53- [ ] Schema migrations tested with rollback or recovery plan54- [ ] Release version correctly set and tagged in source control55- [ ] Performance and reliability benchmarks within agreed targets5657### Code Quality58- [ ] TODO count: [N] (zero required for launch, or documented exceptions)59- [ ] FIXME count: [N] (zero required)60- [ ] HACK count: [N] (each must have documented justification)61- [ ] No unintended debug output in production code62- [ ] No hardcoded dev/test values63- [ ] All feature flags reviewed for launch defaults64- [ ] Error handling covers all critical paths65- [ ] Crash reporting and structured logging integrated and verified66- [ ] Dependency vulnerabilities triaged and accepted risk documented6768### Security and Privacy69- [ ] No exposed API keys or credentials in source or build artifacts70- [ ] Authentication, authorization, and input validation verified on public endpoints71- [ ] Network communication secured (TLS, signed webhooks, secret rotation as applicable)72- [ ] Abuse protection, rate limiting, or bot controls enabled where required73- [ ] Privacy policy and data handling compliance verified74- [ ] Backup and restore path validated for stateful systems7576---7778## 2. Product Readiness7980### Functional Scope81- [ ] All launch-scope features implemented or explicitly deferred82- [ ] Critical user journeys tested end-to-end83- [ ] Admin, support, and internal operational workflows verified84- [ ] Billing, notifications, integrations, and webhooks tested if applicable85- [ ] Data import/export, retention, or deletion flows verified if applicable86- [ ] Release notes and known issues drafted8788### UX, Content, and Localization89- [ ] All placeholder copy and visuals replaced90- [ ] All user-facing text proofread91- [ ] No hardcoded strings (all externalized for localization)92- [ ] All supported languages translated and verified93- [ ] Text fits UI in all supported languages94- [ ] Help content, onboarding, and empty states reviewed95- [ ] Customer-facing documentation links are current9697---9899## 3. Quality Assurance100101### Testing102- [ ] Full regression test suite passed103- [ ] Zero Sev1 (Critical) bugs open104- [ ] Zero Sev2 (High/Major) bugs open, or documented exceptions with owner approval105- [ ] Smoke test passed in staging or release candidate environment106- [ ] User acceptance or stakeholder sign-off captured107- [ ] Edge cases tested (no network, expired session, low storage, rate limits, retries)108- [ ] Backup/restore or disaster recovery drill completed if applicable109110### Accessibility and Compliance111- [ ] Accessibility basics covered for target surfaces112- [ ] Consent, privacy, and legal notices reviewed113- [ ] Audit logging or regulated workflow checks verified if required114- [ ] App store or platform policy requirements met, if applicable115116### Performance and Reliability117- [ ] Response time or startup time within budget118- [ ] Memory and CPU usage within budget119- [ ] Queue lag, background jobs, and async workflows within targets120- [ ] No sustained error-rate spikes during release candidate soak window121- [ ] Capacity and scaling assumptions reviewed for launch traffic122123---124125## 4. Distribution and Customer-Facing Assets126127### Release Assets128- [ ] Changelog complete and proofread129- [ ] Release notes complete and customer-appropriate130- [ ] Version numbers aligned across app, API, docs, and packaging131- [ ] Download links, package names, or deployment targets finalized132133### Launch Communications134- [ ] Status page messaging prepared135- [ ] Customer announcement drafted136- [ ] In-app banner, modal, or changelog entry prepared if needed137- [ ] Support macros / FAQ updated138- [ ] Sales, customer success, and internal stakeholders briefed139140### Public Metadata141- [ ] Marketing site or product page copy updated142- [ ] Screenshots or release visuals current143- [ ] Pricing, packaging, and plan entitlements verified144- [ ] App store listing metadata current, if applicable145146---147148## 5. Infrastructure149150### Production Readiness151- [ ] Production infrastructure provisioned and sized for launch152- [ ] Database backups configured and restore tested153- [ ] CDN, cache invalidation, and asset delivery configured where applicable154- [ ] Feature flag rollout strategy documented155- [ ] Secrets and access reviews completed156- [ ] Deployment and rollback runbooks current157158### Analytics and Monitoring159- [ ] Analytics pipeline verified and receiving expected events160- [ ] Crash reporting active and dashboard accessible161- [ ] Monitoring dashboards live for core technical and business metrics162- [ ] Alerts configured for critical thresholds163- [ ] Incident escalation path and owners documented164165---166167## 6. Support and Operations168169### Team Readiness170- [ ] On-call schedule set for first 72 hours post-launch171- [ ] Incident response playbook reviewed by the team172- [ ] Hotfix pipeline tested173- [ ] Communication plan for launch issues documented174- [ ] Support team briefed on known issues and escalation path175176### Launch Day Plan177- [ ] Go-live sequence documented step by step178- [ ] Rollback decision criteria documented179- [ ] War room or launch channel established180- [ ] Launch monitoring dashboard bookmarked by all leads181- [ ] Checkpoint times defined for launch-day review182183---184185## Go / No-Go Decision186187**Overall Status**: [READY / NOT READY / CONDITIONAL]188189### Blocking Items190[List any items that must be resolved before launch]191192### Conditional Items193[List items that have documented workarounds or accepted risk]194195### Sign-Offs Required196- [ ] Product Owner - Scope and customer readiness197- [ ] Engineering Lead - Technical health and stability198- [ ] QA Lead - Quality and test coverage199- [ ] Release Manager - Deployment and rollback readiness200- [ ] Security / Compliance Owner - Security and data handling201- [ ] Support Lead - Support and incident readiness202```2032045. **Save the checklist** to205 `production/releases/launch-checklist-[date].md`, creating directories as needed.2062076. **Output a summary** to the user: total items, blocking items count,208 conditional items count, departments with incomplete sections, and the file path.209210## Protocol211212- **Question**: Reads launch date or `dry-run` argument; gathers context from CLAUDE.md and milestone files213- **Options**: Skip214- **Decision**: Skip - checklist is generated; Go/No-Go is advisory215- **Draft**: Summary statistics shown before saving216- **Approval**: "May I write to `production/releases/launch-checklist-[date].md`?"217218## Output219220Deliver exactly:221222- **Checklist file** saved to `production/releases/launch-checklist-[date].md`223- **Summary**: total items / blocking count / conditional count / incomplete departments224- **Verdict**: `GO` / `CONDITIONAL GO` / `NO-GO` with blocking items listed