deploy-check

deploy-check is a skill for Claude Code from faizkhairi/claude-code-blueprint. It costs 167 tokens per session (629 once invoked), scanned A, original, MIT.

A pre-release checklist for software that is about to be deployed or published. It checks tests, source control changes, database schema, secrets, debugging leftovers, environment settings, authentication, dependencies, and the build.

In plain words
What is it for?
Use it before deploying, going live, merging into a production branch, releasing a package, or reviewing dependency and security readiness.
Why use it?
It reduces the chance of shipping broken code, exposed credentials, unsafe database changes, or known serious dependency problems.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it before deploying, going live, merging into a production branch, releasing…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/faizkhairi/claude-code-blueprint/deploy-check
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add faizkhairi/claude-code-blueprint --skill deploy-check
Clone the repo
git clone --depth 1 https://github.com/faizkhairi/claude-code-blueprint

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for deploy-check

README.md
[![agentmods](https://agentmods.dev/badge/skills/faizkhairi/claude-code-blueprint/deploy-check.svg)](https://agentmods.dev/skills/faizkhairi/claude-code-blueprint/deploy-check)
Your own site
<a href="https://agentmods.dev/skills/faizkhairi/claude-code-blueprint/deploy-check"><img src="https://agentmods.dev/badge/skills/faizkhairi/claude-code-blueprint/deploy-check.svg" alt="Measured on agentmods" height="20"></a>
Per session 167 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 629 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00167 $0.00629
Opus 5 $0.00084 $0.00315
Sonnet 5 $0.00033 $0.00126
Haiku 4.5 $0.00017 $0.00063

Measured 7d ago against content hash 8cc3858427ce, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

deploy-check scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/deploy-check/SKILL.md · 29 lines

What it actually says

Pre-deployment validation for $ARGUMENTS environment:

  1. Tests: Run full test suite, all must pass
  2. Git status: Check for uncommitted changes across all repos
  3. Schema sync: Verify the project's ORM/DB schema definition matches expectations (e.g. Prisma schema, Django models, Rails schema.rb, migrations directory)
  4. Secrets check: Scan for hardcoded credentials, API keys, passwords
  5. Dev artifacts: Check for language-appropriate debug/print statements (console.log, print(), System.out.println, fmt.Println, etc.), debugger statements, TODO/FIXME in production paths
  6. Env vars: Verify required environment variables are documented
  7. Auth coverage: Validate all API endpoints have auth middleware
  8. Dependency audit: Run the ecosystem's dependency audit (npm audit/yarn audit, pip-audit, bundle audit, cargo audit, govulncheck, etc., detected from the manifest/lockfile). Classify: CRITICAL/HIGH (action required) vs MODERATE/LOW (note). Separate production vs dev-only vulnerabilities. Check for auto-fixable with --dry-run.
  9. Build: Verify project builds without errors
  10. Migration safety: Check if any ORM models/migrations are missing (risk of tables dropped by destructive sync)

If argument is "audit" → run only step 8 (dependency vulnerability scan) across the current project.

GO/NO-GO Criteria

  • NO-GO: Any test failure, hardcoded secret found, ORM model/migration missing, build failure, or CRITICAL/HIGH vulnerability in production deps
  • GO: All steps pass. MODERATE/LOW vulnerabilities in dev-only deps are acceptable with note.
  • GO with warnings: All critical steps pass but non-blocking issues exist (dev-only vulns, TODO items in non-critical paths)

Output: GO / NO-GO status with detailed checklist results.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 29 lines · 167 tokens per session scan A 8cc3858427ce

Subscribe to this mod's changes

deploy-check is a skill published in the GitHub repository faizkhairi/claude-code-blueprint (70 stars, last pushed 25d ago), licensed MIT. It adds 167 tokens to every session and 629 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.