deploy-check

Validate code before production deployment with tests, security scans, and schema checks.

64|19|Updated Mar 25, 2026
One-click install
npx skills add https://github.com/faizkhairi/claude-code-blueprint --skill deploy-check-faizkhairi
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deploy-check
Source: https://github.com/faizkhairi/claude-code-blueprint/tree/main/skills/deploy-check
Command: npx skills add https://github.com/faizkhairi/claude-code-blueprint --skill deploy-check-faizkhairi

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill ensures code readiness for production deployment by running a comprehensive pre-deployment validation process.

Core Features & Use Cases

  • Pre-Deployment Validation: Executes a series of checks before any deployment to main/master/production or npm publish, ensuring code quality and security.
  • Test Suite Validation: Runs the full test suite to verify all tests pass.
  • Dev-Artifact Scan: Checks for hardcoded secrets, debug statements, and TODO/FIXME comments.
  • Dependency Audit: Runs dependency checks to identify and report potential security vulnerabilities.
  • ORM/Schema Safety Check: Verifies ORM/DB schema matches expectations to prevent unexpected data loss.
  • Auth Coverage: Validates all API endpoints have auth middleware.
  • Build Verification: Checks if the project builds without errors.
  • Migration Safety: Ensures no ORM models/migrations are missing.

Quick Start

Run the 'deploy-check' skill with the environment specified as an argument: deploy-check dev to validate a development environment or deploy-check prod for production environment.

Frequently Asked Questions about deploy-check

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

FAQPage Schema
How do I automate pre-commit checks for production deployment?

Automate pre-commit checks for production deployment by running a validation process that executes test suites, scans for hardcoded secrets, and verifies schema integrity to ensure code readiness.

What is included in a pre-deployment code validation workflow?

A pre-deployment code validation workflow includes running full test suites, auditing dependencies for security vulnerabilities, verifying ORM schema matches, and checking API endpoints for auth middleware coverage.

How do I scan for debug artifacts and hardcoded secrets before publishing?

Scan for debug artifacts and hardcoded secrets before publishing by executing a dev-artifact scan that identifies debug statements, TODO/FIXME comments, and sensitive data hidden in the source code.

Can I verify ORM database schema safety and migration completeness before deploying?

Verify ORM database schema safety and migration completeness before deploying by running a schema safety check that ensures ORM models match expectations and no migrations are missing to prevent data loss.

Does this pre-deployment validation tool check for missing auth middleware on API endpoints?

This pre-deployment validation tool checks for missing auth middleware by validating that all API endpoints have authentication coverage before allowing a deployment to production environments.

How do I run a dependency security audit before a production release?

Run a dependency security audit before a production release by executing dependency checks that identify and report potential security vulnerabilities in your project's external libraries.