deploy-checklist

deploy-checklist is a command for Claude Code from sponticelli/gamedev-claude-plugins. It costs 10 tokens per session (1,048 once invoked), scanned A, original, MIT.

A release-planning helper that creates a checklist for deploying a new version of a game or application.

In plain words
What is it for?
Use it to prepare deployment steps for major, minor, patch, or emergency releases across platforms such as Steam, consoles, mobile, or the web.
Why use it?
It reduces the chance of missing code, testing, build, database, ownership, communication, or rollback tasks before release.

Command for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the devops plugin — 6 commands, 6 agents shipped together

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 commands/sponticelli/gamedev-claude-plugins/deploy-checklist
Clone the repo
git clone --depth 1 https://github.com/sponticelli/gamedev-claude-plugins

Made for: Claude Code.

Or install devops, the plugin that ships this one along with the rest of its 6 commands, 6 agents.

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/commands/sponticelli/gamedev-claude-plugins/deploy-checklist.svg)](https://agentmods.dev/commands/sponticelli/gamedev-claude-plugins/deploy-checklist)
Your own site
<a href="https://agentmods.dev/commands/sponticelli/gamedev-claude-plugins/deploy-checklist"><img src="https://agentmods.dev/badge/commands/sponticelli/gamedev-claude-plugins/deploy-checklist.svg" alt="Measured on agentmods" height="20"></a>
Per session 10 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,048 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.00010 $0.01048
Opus 5 $0.00005 $0.00524
Sonnet 5 $0.00002 $0.00210
Haiku 4.5 $0.00001 $0.00105

Measured 6d ago against content hash 918ec5782a49, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

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

plugins/devops/commands/deploy-checklist.md · 196 lines

How it starts

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

Deployment Checklist Generator

Generate a comprehensive deployment checklist tailored to the release type and platform.

Context Gathering

Before generating, understand:

Release Context

  • Release type (major, minor, patch, hotfix)
  • Target platforms (Steam, Console, Mobile, Web)
  • New features or changes included
  • Database migrations required

Team Context

  • Release owner
  • On-call personnel
  • Communication channels

Output Format

# Deployment Checklist: v[Version]

## Release Overview
**Version:** [X.Y.Z]
**Type:** [Major/Minor/Patch/Hotfix]
**Date:** [Scheduled date/time UTC]
**Owner:** [Name]
**On-Call:** [Name]

---

## Pre-Deployment (T-24h to T-1h)

### Code Readiness
- [ ] All features merged to release branch
- [ ] Code freeze in effect
- [ ] No critical bugs in release
- [ ] Release notes drafted

### QA Sign-Off
- [ ] Smoke tests passed
- [ ] Regression tests passed
- [ ] Platform-specific tests passed
- [ ] QA lead has signed off

### Build Readiness
- [ ] Release build created
- [ ] Build version matches release
- [ ] Artifact stored and accessible
- [ ] Build tested on target platforms

### Database
- [ ] Migrations tested on staging
- [ ] Rollback scripts prepared
- [ ] Backup scheduled
- [ ] Data integrity verified

### Feature Flags
- [ ] New features flagged OFF by default
- [ ] Flag configurations reviewed
- [ ] Rollback flags identified

### Communication
- [ ] Team notified of deployment window
- [ ] Support team briefed on changes
- [ ] Player announcement drafted
- [ ] Status page ready

---

## Deployment (T-0)

### Start Deployment
- [ ] Announce deployment starting in #releases
- [ ] Set status page to "Deploying"
- [ ] Begin deployment procedure

### Platform-Specific

#### Steam
- [ ] Upload to Steam depot
- [ ] Set build live on branch
- [ ] Verify SteamDB shows update
- [ ] Wait for CDN propagation (~15 min)

#### Console (if applicable)
- [ ] Certification passed
- [ ] Submit to platform
- [ ] Coordinate regional timing

#### Mobile (if applicable)
- [ ] iOS: Submit for review or release
- [ ] Android: Set rollout percentage
- [ ] Monitor for review issues

#### Web (if applicable)
- [ ] Deploy to CDN
- [ ] Invalidate cache
- [ ] Verify version endpoint

### Database Migrations
- [ ] Run migrations
- [ ] Verify migration success
- [ ] Spot-check data integrity

### Feature Flag Activation
- [ ] Enable flags per rollout plan
- [ ] Verify flag states

---

## Post-Deployment (T+0 to T+4h)

### Immediate Verification
- [ ] Application starts successfully
- [ ] Login flow works
- [ ] Core gameplay functional
- [ ] No error spikes in logs

### Metrics Check
- [ ] Error rate normal (< [X]%)
- [ ] Latency normal (< [X]ms)
- [ ] Player count recovering
- [ ] No crash spikes

### Smoke Test
- [ ] New player flow
- [ ] Returning player flow
- [ ] Purchase flow (if applicable)
- [ ] Key features working

### Communication
- [ ] Update status page to "Deployed"
- [ ] Announce deployment complete
- [ ] Publish patch notes
- [ ] Notify support team

---

## Monitoring Period (T+4h to T+24h)

### Extended Monitoring
- [ ] Review error logs
- [ ] Check player feedback channels
- [ ] Monitor support tickets
- [ ] Watch revenue metrics (if applicable)

### Issue Triage
- [ ] Assess any reported issues
- [ ] Determine if hotfix needed
- [ ] Document known issues

---

## Rollback Procedure (If Needed)

### Triggers for Rollback
- Crash rate > [X]%
- Error rate > [X]%
- Revenue impact > [X]%
- Critical exploit discovered

### Rollback Steps
1. [ ] Announce rollback in #incidents
2. [ ] Disable new feature flags
3. [ ] Deploy previous version
4. [ ] Verify rollback successful
5. [ ] Update status page
6. [ ] Communicate to players
7. [ ] Schedule postmortem

---

## Sign-Off

### Deployment Complete
- [ ] All verification passed
- [ ] Monitoring shows stable
- [ ] Release owner sign-off
- [ ] Handoff to on-call complete

### Post-Deployment
- [ ] Update release log
- [ ] Close deployment ticket
- [ ] Schedule retrospective (if issues)

Read the full file on GitHub · 196 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 · 196 lines · 10 tokens per session scan A 918ec5782a49

Subscribe to this mod's changes

deploy-checklist is a command published in the GitHub repository sponticelli/gamedev-claude-plugins (15 stars, last pushed 7mo ago), licensed MIT. It adds 10 tokens to every session and 1,048 once invoked, about $0.0001 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.