shipping-and-launch

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

Updated Sep 17, 2026
One-click install
npx skills add https://github.com/authrain-cloud-abdullahformuli/agent-skills --skill shipping-and-launch-authrain-cloud-abdullahformuli
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: shipping-and-launch
Source: https://github.com/authrain-cloud-abdullahformuli/agent-skills/tree/main/skills/shipping-and-launch
Command: npx skills add https://github.com/authrain-cloud-abdullahformuli/agent-skills --skill shipping-and-launch-authrain-cloud-abdullahformuli

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Deploying to production without a checklist, monitoring, or a rollback plan leads to broken releases discovered through user complaints instead of dashboards. This Skill structures the entire launch process 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 that must pass before shipping. - Feature Flags and Staged Rollouts: Guides deployment behind flags with a canary sequence (5% → 25% → 50% → 100%) and explicit advance/hold/rollback thresholds for error rate, latency, and business metrics. - Monitoring and Rollback Strategy: Defines what to monitor post-launch, error budget release gates, and a documented rollback plan with trigger conditions and time-to-rollback targets. - Use Case: Before releasing a new task-sharing feature, use this Skill to verify the pre-launch checklist, deploy behind a feature flag, canary to 5% of users while watching error rates, and roll back instantly if thresholds are breached. ## Quick Start Ask the agent to prepare a production launch plan with a pre-launch checklist, staged rollout, and rollback strategy for your feature.

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 (no secrets, dependency audits, rate limiting), performance (Core Web Vitals, bundle size), accessibility (WCAG 2.1 AA), infrastructure (env vars, migrations, health checks), and documentation. All sections must pass before deploying.

How do I run a staged rollout with feature flags?

Deploy with the flag off, enable for internal users first, then canary to 5% of users while monitoring error rates and latency for 24-48 hours. Advance through 25%, 50%, and 100% only if metrics stay within thresholds, then remove the flag after full rollout.

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 is an error budget release gate?

An error budget release gate uses your SLO's allowed failure fraction to decide if it is safe to ship. Above 20% budget remaining you ship normally, between 0-20% you slow rollouts, and when exhausted you freeze feature work to focus on reliability.

What should I monitor in the first hour after a production deploy?

Check that the health endpoint returns 200, error monitoring shows no new error types, latency has not regressed, and the critical user flow works manually. Also verify logs are flowing and confirm the rollback mechanism is ready.