deploy-checklist

deploy-checklist is a skill for Claude Code, Codex from wednesday-solutions/ai-agent-skills. It costs 39 tokens per session (669 once invoked), scanned A, original, MIT.

A deployment-stage checklist that guides pre-release and post-release checks for a production system.

In plain words
What is it for?
Use it to verify CI, environment variables, database migrations, feature flags, rollback plans, logs, smoke tests, and monitoring before and after deployment.
Why use it?
It reduces the chance of missing configuration, database, rollback, testing, or monitoring steps when releasing changes.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to verify CI, environment variables, database migrations, feature flags, rollback plans, logs, smoke tests, and monitoring before and after deployment.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wednesday-solutions/ai-agent-skills/deploy-checklist
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 wednesday-solutions/ai-agent-skills --skill deploy-checklist
Clone the repo
git clone --depth 1 https://github.com/wednesday-solutions/ai-agent-skills

Made for: Claude Code, Codex.

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-checklist

README.md
[![agentmods](https://agentmods.dev/badge/skills/wednesday-solutions/ai-agent-skills/deploy-checklist/github.svg)](https://agentmods.dev/skills/wednesday-solutions/ai-agent-skills/deploy-checklist)
Your own site
<a href="https://agentmods.dev/skills/wednesday-solutions/ai-agent-skills/deploy-checklist"><img src="https://agentmods.dev/badge/skills/wednesday-solutions/ai-agent-skills/deploy-checklist/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for deploy-checklist

Your own site · 80×15
<a href="https://agentmods.dev/skills/wednesday-solutions/ai-agent-skills/deploy-checklist"><img src="https://agentmods.dev/badge/skills/wednesday-solutions/ai-agent-skills/deploy-checklist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 669 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00039 $0.00669
Opus 5 $0.00019 $0.00334
Sonnet 5 $0.00008 $0.00134
Haiku 4.5 $0.00004 $0.00067

Measured 12d ago against content hash bb2e11137c42, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

deploy-checklist scanned grade A with 1 finding 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 12d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- Bash(curl *)
skills/deploy-checklist/SKILL.md · 86 lines

How it starts

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

Deploy Checklist Skill

Trigger

Load this skill when a dev is about to deploy or has just deployed:

  • "We're deploying to production"
  • "Pre-deploy check"
  • "Post-deploy verification"
  • "Run the deploy checklist"
  • "Is it safe to deploy?"

Do NOT use this skill for: committing code (use git-os), creating a PR (use pr-create), or planning a project (use greenfield). This skill only applies at the deployment stage — code is already merged.


Run this checklist before and after every production deployment.

Pre-Deploy Checklist

  • All CI checks green on the deploy branch
  • Environment variables verified in target environment (no missing keys)
  • Database migrations reviewed — irreversible migrations documented
  • Migrations have been dry-run or tested in staging
  • Rollback plan documented: what to revert and how
  • Feature flags set correctly for the release
  • Downstream services notified if API contracts changed
  • Changelog updated with this release's changes
  • Deployment window confirmed (avoid peak traffic)

Deploy

  • Deploy initiated with correct branch / tag
  • Deployment logs monitored in real time
  • No unexpected errors during startup

Post-Deploy Checklist

  • Smoke test: critical user flows verified manually or via synthetic monitoring
  • Health check endpoint returns 200
  • Error rate in monitoring (Datadog, Grafana, Sentry) is normal
  • No spike in latency or DB query time
  • Monitoring alerts reviewed — no new alerts triggered
  • Changelog published / communicated to stakeholders
  • Ticket status updated (closed / released)

Rollback Trigger Criteria

Initiate rollback immediately if:

  • Error rate rises above 1% of requests
  • P95 latency increases by more than 2x baseline
  • Any data integrity issue detected
  • Critical feature path returns 5xx

Tools

Action Tool
Run lint, test, build scripts Bash
Check health endpoint Bashcurl -s <url>/health
Read config or env files Read
Check CI status Bashgh run list or gh pr checks

Read the full file on GitHub · 86 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. 12d ago First seen · 86 lines · 39 tokens per session scan A bb2e11137c42

Subscribe to this mod's changes

deploy-checklist is a skill published in the GitHub repository wednesday-solutions/ai-agent-skills (168 stars, last pushed 3mo ago), licensed MIT. It adds 39 tokens to every session and 669 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

pin-github-actions

Migrates GitHub Actions workflows to use pinned commit SHAs instead of tags, resolves the latest release versions, flags major version jumps, and configures Dependabot with grouped updates. Use when user mentions pin actions, pinned versions, SHA pinning, GitHub Actions security, dependabot setup, or supply-chain…

rlespinasse/agent-skills · 69 tokens

verify-pr-logs

Checks GitHub Actions CI logs on a pull request, diagnoses failures, and guides the agent to implement fixes. Use when user mentions CI failing, check PR logs, fix pipeline, GitHub Actions errors, workflow failures, build broken, tests failing on PR, or debug CI. Focuses on PR-scoped CI analysis only.

rlespinasse/agent-skills · 71 tokens

kubestellar-console

Multi-cluster Kubernetes dashboard with AI-powered operations via MCP server and 10+ built-in agent skills.

aboalrejal-ai/skills · 25 tokens

godot-export-builds

Expert patterns for multi-platform exports including export templates (Windows/Linux/macOS/Android/iOS/Web), command-line exports (headless mode), platform-specific settings (codesign, notarization, Android SDK), feature flags (OS.hasfeature), CI/CD pipelines (GitHub Actions), and build optimization (size reduction…

bgrenat/godot-game-dev-studio · 114 tokens

deployment-patterns

Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications.

deepelementlab/jupyter-studio · 31 tokens

agentic-actions-auditor

Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI Inference. Detects attack vectors where attacker-controlled input reaches. AI agents running in CI/CD pipelines.

aboalrejal-ai/skills · 63 tokens