addy-shipping-and-launch

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

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

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 every launch so it 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 deploy. - Feature Flags and Staged Rollouts: Decouples deployment from release with a flag lifecycle and a canary sequence (5% → 25% → 50% → 100%) with explicit advance/hold/rollback thresholds for error rate, latency, and business metrics. - Monitoring and Rollback Strategy: Defines what to monitor (application, infrastructure, client metrics), post-launch verification steps, and a documented rollback plan with trigger conditions and time-to-rollback targets. - Use Case: Before releasing a new task-sharing feature, run the pre-launch checklist, deploy behind a feature flag, canary to 5% of users while watching error rates, then advance the rollout or roll back based on the decision thresholds. ## Quick Start Use the shipping-and-launch skill to prepare a pre-launch checklist and staged rollout plan for my next production deployment.

Frequently Asked Questions about addy-shipping-and-launch

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

FAQPage Schema
How do I prepare a production deployment checklist?▼

Run the pre-launch checklist covering code quality, security, performance, accessibility, infrastructure, and documentation. Every section must be green before deploying, including passing tests, no secrets in code, Core Web Vitals within thresholds, and a working health check endpoint.

How to do a staged rollout with feature flags?▼

Deploy with the flag off, enable for internal users, 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 metrics should I monitor after a production launch?▼

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

Do small changes still need feature flags and rollback plans?▼

Yes. Every feature benefits from a kill switch because even simple changes can break in production, which has different data and traffic patterns than staging. Each flag needs an owner, an expiration date, and cleanup within two weeks of full rollout.