deploy-checker

Automate deployment readiness checks for CI/CD and Vercel projects.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/M2AI-jp/thanks4claudecode-fresh --skill deploy-checker
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deploy-checker
Source: https://github.com/M2AI-jp/thanks4claudecode-fresh/tree/main/.claude/skills/deploy-checker
Command: npx skills add https://github.com/M2AI-jp/thanks4claudecode-fresh --skill deploy-checker

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill prevents deployment failures by automatically checking environment variables, build status, security settings, and deployment configurations before pushing to production.

Core Features & Use Cases

  • Environment Validation: Verifies all required environment variables are properly configured
  • Build Verification: Ensures the application builds successfully before deployment
  • Security Scanning: Checks for exposed secrets and proper .gitignore configuration
  • Use Case: Before deploying a Next.js application to Vercel, this Skill automatically runs pnpm build, checks for missing environment variables, and validates security settings, catching issues that would cause production failures.

Quick Start

Use the deploy-checker skill before any git push to automatically validate your deployment readiness and prevent production issues.

Frequently Asked Questions about deploy-checker

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

FAQPage Schema
How do I prevent deployment failures before pushing to production?

Deployment validation automatically checks environment variables, build status, security settings, and configurations before production release. Run checks on CI/CD workflows or before git push to catch missing variables, build errors, exposed secrets, and deployment misconfigurations that would cause production failures.

Can I validate environment variables and detect hardcoded secrets in my Vercel deployment?

Yes. The Skill verifies all required environment variables are configured, scans for exposed secrets, checks .gitignore setup, and validates Vercel deployment settings. It runs build verification and security checks automatically before deployment to catch configuration gaps.

What should I check before deploying a Next.js application to production?

Run deployment readiness checks that verify successful builds, confirm environment variables are set, validate security configuration, and ensure deployment settings are correct. This catches issues like missing env vars, build failures, hardcoded secrets, and misconfigured deployment before they reach production.

How do I automate CI/CD deployment validation in my Git workflow?

Integrate deployment validation into your CI/CD pipeline to automatically verify builds succeed, environment variables are complete, secrets aren't exposed, and deployment configurations are valid. Run checks before each git push or merge to prevent production issues.

What's the difference between build validation and deployment configuration checks?

Build validation ensures your application compiles successfully within size constraints; deployment configuration checks verify environment variables, security settings, and platform-specific deployment options (like Vercel settings) are properly configured and consistent.

Do I need to manually check environment variables before each deployment?

No. Automated deployment validation eliminates manual checks by verifying all required environment variables are properly configured, detecting missing variables, and catching security issues automatically before production deployment.