deploy-checklist

Verify pre-deploy prerequisites and post-deploy health for production deployments.

165|20|Updated Feb 2, 2026
One-click install
npx skills add https://github.com/wednesday-solutions/ai-agent-skills --skill deploy-checklist-wednesday-solutions
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deploy-checklist
Source: https://github.com/wednesday-solutions/ai-agent-skills/tree/main/skills/deploy-checklist
Command: npx skills add https://github.com/wednesday-solutions/ai-agent-skills --skill deploy-checklist-wednesday-solutions

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill prevents broken or risky production releases by ensuring teams verify CI health, required environment variables, migration readiness, rollback readiness, smoke testing, and monitoring outcomes before and after every deployment.

Core Features & Use Cases

  • Pre-deploy verification: Confirms CI is green, required env vars are present, migrations are reviewed for irreversibility, and rollback plans are documented.
  • Deployment execution guardrails: Ensures the correct branch or tag is deployed and that startup logs show no unexpected errors.
  • Post-deploy validation: Validates smoke tests, health endpoint status, error-rate and latency stability, and that monitoring alerts have not newly triggered.
  • Rollback trigger criteria: Provides clear thresholds for initiating rollback (e.g., error rate, P95 latency, data integrity issues, or critical 5xx paths).

Use case: A team is about to ship a release that includes database migrations—this Skill helps verify migrations were dry-run tested, ensures a rollback path exists, and confirms post-release user flows and monitoring remain healthy.

Quick Start

Use the deploy-checklist skill to run the pre-deploy and post-deploy checklist for my production deployment using the current environment and release details.

Frequently Asked Questions about deploy-checklist

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

FAQPage Schema
What should a production deployment checklist include to prevent risky releases?

A production deployment checklist should verify CI status is green, required environment variables are present, database migrations are reviewed, and rollback plans are documented before deployment. Post-deployment, it must validate smoke tests, health endpoints, and monitoring alerts.

How do I verify database migration safety before deploying to production?

To verify database migration safety before deploying, review migrations for irreversibility, ensure they were dry-run tested, and confirm a documented rollback path exists. This prevents data integrity issues and ensures you can revert if the release fails.

When should I trigger a rollback after a production release?

Trigger a rollback after a production release when explicit thresholds are breached, such as elevated error rates, P95 latency spikes, data integrity issues, or critical 5xx path failures. Clear rollback trigger criteria prevent prolonged outages.

How do I validate application health and monitoring after a deployment?

Validate application health post-deployment by checking health endpoint status, confirming startup logs show no unexpected errors, running smoke tests, and verifying error-rate and latency stability. Ensure no new monitoring alerts have triggered.

Do I need CI checks to pass before running a release readiness workflow?

Yes, CI checks must pass and show a green status before proceeding with a release readiness workflow. Verifying CI health is a mandatory pre-deploy prerequisite to ensure the codebase is stable and safe for production rollout.

What is the best way to ensure safe production deployments with database migrations?

The best way to ensure safe production deployments with migrations is to use a checklist workflow covering CI checks, environment variable presence, migration dry-run testing, rollback documentation, smoke testing, and health endpoint verification.