shipping-and-launch

Guides production launches with pre-launch checklists, staged rollouts, monitoring, and rollback plans.

Updated Aug 22, 2026
One-click install
npx skills add https://github.com/MSC72m/DevForge --skill shipping-and-launch-msc72m
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: shipping-and-launch
Source: https://github.com/MSC72m/DevForge/tree/main/skills/shipping-and-launch
Command: npx skills add https://github.com/MSC72m/DevForge --skill shipping-and-launch-msc72m

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Deploying to production without a structured process leads to broken releases, undetected errors, and no way to recover quickly. This Skill provides a complete launch framework so every deployment is reversible, observable, and incremental. ## Core Features & Use Cases - Pre-Launch Checklist: Covers code quality, security, performance, accessibility, infrastructure, and documentation gates before any deploy. - Feature Flags & Staged Rollout: Decouples deployment from release with a team → 5% → 25% → 50% → 100% canary sequence and explicit advance/hold/rollback thresholds for error rate, latency, and business metrics. - Monitoring & Rollback Strategy: Defines what to monitor (application, infrastructure, client metrics), post-launch verification steps, error budget release gates, and a documented rollback plan template. - Use Case: Before releasing a new task-sharing feature, run the checklist, deploy behind a feature flag, canary to 5% of users, watch error rates against baseline for 48 hours, then gradually roll out with a one-minute flag-based rollback ready. ## Quick Start Ask the AI to prepare a production launch plan with a pre-launch checklist, staged rollout, and rollback strategy for your upcoming release.

Frequently Asked Questions about shipping-and-launch

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I prepare a production launch checklist before deploying?▼

A production launch checklist covers six areas: code quality (tests, lint, reviews), security (dependency audits, headers, rate limiting), performance (Core Web Vitals, N+1 queries), accessibility (WCAG 2.1 AA), infrastructure (env vars, migrations, health checks), and documentation. All sections must pass before deploying.

How to do a staged rollout with feature flags?▼

Deploy with the flag off, enable for internal team first, then canary to 5% of users, and increase through 25%, 50%, and 100%. Monitor error rates, P95 latency, and business metrics at each stage for 24-48 hours, advancing only when thresholds stay green.

When should I roll back a production deployment?▼

Roll back immediately when error rate exceeds 2x baseline, P95 latency rises more than 50%, user-reported issues spike, or data integrity or security problems appear. Feature flag rollbacks take under a minute; redeploying a previous version takes under five minutes.

What metrics should I monitor after a production deploy?▼

Monitor application metrics (error rate, p50/p95/p99 latency, request volume), infrastructure metrics (CPU, memory, database pool, queue depth), and client metrics (Core Web Vitals, JavaScript errors). In the first hour, verify the health endpoint, error dashboards, and the critical user flow manually.

What is an error budget release gate?▼

An error budget gate uses your SLO's allowed failure fraction to decide if shipping is safe. Above 20% budget remaining you ship normally, 0-20% means slow rollouts only, and exhausted budget freezes feature work until reliability is restored.

What are common mistakes when shipping to production?▼

Common red flags include deploying without a rollback plan, no monitoring in production, big-bang releases without staging, feature flags with no owner or expiration, and shipping when the error budget is exhausted. Assuming staging success guarantees production success is another frequent failure.