deploy-check

deploy-check is a skill for Claude Code from kazdenc/builder-skills. It costs 64 tokens per session (1,252 once invoked), scanned A, original, MIT.

A checklist for deciding whether a code change is ready to release to users in a live environment.

In plain words
What is it for?
Use it to check code quality, database migrations, environment variables, feature flags, approvals, rollback plans, and basic post-release tests.
Why use it?
It exposes unfinished tests, unsafe database changes, missing settings, untested rollback steps, and other release risks before deployment.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

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.

agentmods
npx agentmods add skills/kazdenc/builder-skills/deploy-check
Any agent
npx skills add kazdenc/builder-skills --skill deploy-check
Clone the repo
git clone --depth 1 https://github.com/kazdenc/builder-skills

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/kazdenc/builder-skills/deploy-check.svg)](https://agentmods.dev/skills/kazdenc/builder-skills/deploy-check)
Your own site
<a href="https://agentmods.dev/skills/kazdenc/builder-skills/deploy-check"><img src="https://agentmods.dev/badge/skills/kazdenc/builder-skills/deploy-check.svg" alt="Measured on agentmods" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,252 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00064 $0.01252
Opus 5 $0.00032 $0.00626
Sonnet 5 $0.00013 $0.00250
Haiku 4.5 $0.00006 $0.00125

Measured 6d ago against content hash d2e13477fa59, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, 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 6d 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.

.claude/skills/dev/deploy/deploy-check/SKILL.md · 120 lines

How it starts

The opening of the file, as written. The whole thing — 120 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Pre-Deployment Check

Walk through this checklist with the user before any production deploy. If a target is provided, scope the check to that feature or release. Present each category, confirm status, and flag anything unresolved.

Pre-Deploy Checklist

Work through each category. Mark items as pass, fail, or N/A.

Code

Check Details
All tests pass Run the full test suite. No skipped tests unless documented.
No console.logs / debuggers Search for console.log, console.debug, debugger statements in changed files.
Linting clean lint command exits with zero errors and zero warnings.
PR approved At least one approval from a reviewer who understands the changed area.
Changes rebased Branch is up to date with the target branch. No merge conflicts.

Database

Check Details
Migrations tested locally Run migrations on a fresh local database and verify the schema.
Migrations reversible Every up has a corresponding down. Test the rollback.
No breaking schema changes Dropping columns, renaming tables, or changing types requires a multi-step migration plan.
Seeds updated If migrations change structure, seed files still work.

Environment

Check Details
New env vars in production Every new variable from .env.local is set in the production environment.
Secrets rotated if needed If a secret was exposed or is being replaced, rotate it before deploy.
Feature flags configured New flags exist in the flag service and are set to the correct default for production.

Dependencies

Check Details
Lock file committed pnpm-lock.yaml / package-lock.json / yarn.lock is checked in and up to date.
No known vulnerabilities Run pnpm audit (or equivalent). No critical or high severity issues.
No untested major version bumps Major dependency upgrades have been tested in staging or a preview environment.

Read the full file on GitHub · 120 lines

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. 6d ago First seen · 120 lines · 64 tokens per session scan A d2e13477fa59

Subscribe to this mod's changes

deploy-check is a skill published in the GitHub repository kazdenc/builder-skills (44 stars, last pushed 6mo ago), licensed MIT. It adds 64 tokens to every session and 1,252 once invoked, about $0.0003 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.

Related

Other skills, from other repositories

release-notes

Generate user-facing release notes from tickets, PRDs, or changelogs. Creates clear, engaging summaries organized by category (new features, improvements, fixes). Use when writing release notes, creating changelogs, announcing product updates, or summarizing what shipped.

phuryn/pm-skills · 57 tokens

publish-notes

Draft user-facing release notes, store changelogs, and internal publish summaries.

HoangNguyen0403/agent-skills-standard · 20 tokens

utility-pm-changelog-curator

Draft CHANGELOG entries from git log via the pm-changelog-curator sub-agent, applying the repo hygiene rules (describe what changed, public paths only, no attribution trailers). Returns a layered draft with a status summary for maintainer review; refuses a dirty working tree unless --committed-only is passed. Use when…

product-on-purpose/pm-skills · 80 tokens

deliver-release-notes

Creates user-facing release notes that communicate new features, improvements, and fixes in clear, benefit-focused language. Use when shipping updates to communicate changes to users, customers, or stakeholders.

product-on-purpose/pm-skills · 41 tokens

pr-snapshot-release

Guide a Mastra maintainer through publishing an npm snapshot from a pull request or a specified repository branch. Use when asked to release, publish, or create a PR snapshot, branch snapshot, canary package build, or branch-specific npm tag. Performs source and branch preflight checks, requires confirmation before…

mastra-ai/mastra · 88 tokens

gh-prerelease

Cut a GitHub prerelease off a specific commit — branch, bump version with just update-version, tag, push, and publish a prerelease.

TracecatHQ/tracecat · 35 tokens