deployment-verification

Verify post-release deployments on Vercel or GCP with health and readiness checks.

Updated Dec 29, 2025
One-click install
npx skills add https://github.com/dseirz-rgb/worker --skill deployment-verification
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deployment-verification
Source: https://github.com/dseirz-rgb/worker/tree/main/.kiro/skills/deployment-verification
Command: npx skills add https://github.com/dseirz-rgb/worker --skill deployment-verification

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires vercel, gcloud, curl, and includes scripts (resource) and references (resource) components.

What problem does it solve?

Deployment verification ensures that after a deploy, the system is actually healthy, correctly configured, and capable of serving traffic, preventing silent failures.

Core Features & Use Cases

  • Post-deploy health checks: validate readiness and system health endpoints.
  • Environment variable synchronization: confirm production secrets match local expectations.
  • Lifecycle verification: smoke tests and log checks to catch issues before customers are affected.

Quick Start

Use the deployment-verification skill to validate a new deployment by running the built-in scripts, e.g., to verify a Vercel deployment: bash .kiro/skills/deployment-verification/scripts/verify-vercel.sh <deployment-url>.

Frequently Asked Questions about deployment-verification

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

FAQPage Schema
How do I automate health checks and verification after a Vercel deployment?

Automate post-deploy verification by running the built-in script `verify-vercel.sh` with your deployment URL to validate readiness, environment variables, and system health endpoints without manual checks.

What is deployment verification and why do I need it for my CI/CD pipeline?

Deployment verification is the process of validating health, configuration, and readiness post-release to ensure the system is correctly configured and capable of serving traffic, preventing silent failures immediately after a deploy.

Can I use this to verify deployments on GCP as well as Vercel?

Yes, deployment verification applies to projects deployed on both Vercel and GCP, using the gcloud and vercel CLIs to perform readiness, health, and log validations across your cloud infrastructure.

Do I need vercel and gcloud CLIs installed to run post-deploy smoke tests?

Yes, you need the vercel and gcloud CLIs along with curl installed in your environment to execute the provided scripts for endpoint checks, log validations, and lifecycle smoke tests.

How do I check if my production environment variables match local expectations after a release?

Run the deployment verification scripts to perform environment variable synchronization, confirming that production secrets and configuration match local expectations before serving customer traffic.

What is the best way to catch deployment issues before customers are affected?

The best way is to automate post-deploy lifecycle verification using smoke tests and log checks to catch issues early, ensuring the system is actually healthy and ready before routing customer traffic.