deploy-checklist

deploy-checklist is a skill for Claude Code from ivanhoinacki/team-exp-claude-config. It costs 88 tokens per session (2,634 once invoked), scanned A, original, MIT.

A deployment-readiness checklist generator for a feature before it is merged. A deployment checklist records the checks, risks, and monitoring needed to release a code change safely.

In plain words
What is it for?
Use it after a pull request is approved and before merging to review changed files, applicable risks, deployment steps, and monitoring needs.
Why use it?
It turns the actual branch changes into a reviewable set of pre-release tasks, helping reveal missing checks or deployment risks before the merge.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; mentions subagents.

Good fit Use it after a pull request is approved and before merging to review changed files, applicable risks, deployment steps, and monitoring needs.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/ivanhoinacki/team-exp-claude-config/deploy-checklist/github.svg)](https://agentmods.dev/skills/ivanhoinacki/team-exp-claude-config/deploy-checklist)
Your own site
<a href="https://agentmods.dev/skills/ivanhoinacki/team-exp-claude-config/deploy-checklist"><img src="https://agentmods.dev/badge/skills/ivanhoinacki/team-exp-claude-config/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/ivanhoinacki/team-exp-claude-config/deploy-checklist"><img src="https://agentmods.dev/badge/skills/ivanhoinacki/team-exp-claude-config/deploy-checklist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,634 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.00088 $0.02634
Opus 5 $0.00044 $0.01317
Sonnet 5 $0.00018 $0.00527
Haiku 4.5 $0.00009 $0.00263

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

- For each endpoint, generate a curl command for staging
skills/deploy-checklist/SKILL.md · 323 lines

How it starts

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

Phase 0: Vault RAG (MANDATORY, BEFORE any Read/Grep)

You MUST call query_vault(query, service_filter) BEFORE reading codebase files or external sources. This is enforced by hook. No exceptions.


Deploy Checklist Generator

Working Directories

  1. Obsidian workspace (docs, plans, features): __VAULT_ROOT__
  2. Codebase (all LE services): __CODEBASE_ROOT__

Generate a deployment checklist based on the actual changes in the current branch.

References


Phase 1: Collect Context

# Branch and commit info
GIT_EDITOR=true git branch --show-current
GIT_EDITOR=true git log main..HEAD --oneline
GIT_EDITOR=true git diff main...HEAD --name-only
GIT_EDITOR=true git diff main...HEAD --stat

Identify the ticket number from $ARGUMENTS or from the branch name (e.g., feat/EXP-3500-description -> EXP-3500).

Read references/learnings.md for any relevant lessons from past deployments.


Phase 2: Parallel Analysis (subagents)

Launch 2 subagents in parallel to analyze the branch changes:

Agent 1: Infrastructure and Config Analysis

Analyze the git diff (main...HEAD) for infrastructure and configuration changes:

1. ENV VARS - Search for:
   - New `process.env.*` references in the diff
   - Changes to Pulumi YAML files (Pulumi.staging.yaml, Pulumi.prod.yaml)
   - Changes to environment-variables.ts, config files, schema files
   - For each new env var, trace the 4-layer chain:
     a) Pulumi YAML (value present in BOTH staging and prod?)
     b) environment-variables.ts (mapped?)
     c) config/index.ts (exported?)
     d) config/schema.ts (validated?)
   - Report any breaks in the chain

2. SECRETS - Check for:
   - New entries in secretNames[] array
   - New `secure:` entries in Pulumi YAMLs
   - Missing secrets (referenced in code but not in Pulumi config)

3. FEATURE FLAGS - Check for:
   - Env vars with ENABLED/FEATURE/FLAG in the name
   - Current values in staging vs prod YAMLs

4. DEPENDENCIES - Check for:
   - package.json changes (new deps, version bumps, removed deps)
   - Lock file changes

Return: env var chain report, secrets list, feature flags, dependency changes.

Read the full file on GitHub · 323 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 323 lines · 88 tokens per session scan A 933e061ae2bc

Subscribe to this mod's changes

deploy-checklist is a skill published in the GitHub repository ivanhoinacki/team-exp-claude-config (2 stars, last pushed 1mo ago), licensed MIT. It adds 88 tokens to every session and 2,634 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories

git-workflow-and-versioning

Structures git workflow practices. Use when making any code change. Use when committing, branching, resolving conflicts, splitting uncommitted work in a messy working tree into clean atomic commits, opening or reviewing a pull request (PR), pushing to a remote, or when you need to organize work across multiple…

addyosmani/agent-skills · 89 tokens

finishing-a-development-branch

A process for finishing a completed development branch. A branch is a separate line of code changes that can later be merged or submitted as a pull request.

jnMetaCode/superpowers-zh · 25 tokens

skillshare-changelog

Generate CHANGELOG.md entry from recent commits in conventional format. Also syncs the website changelog page. Use this skill whenever the user asks to: generate a changelog, document what changed between tags, or create a new CHANGELOG entry. If you see requests like "write the changelog for v0.17", "what changed…

runkids/skillshare · 134 tokens

skillshare-release

End-to-end release workflow for skillshare. Runs tests, generates changelog (via /changelog), optionally writes local RELEASENOTES, updates version numbers, commits, and drafts announcements. Use when the user says "release", "prepare release", "cut a release", "release v0.19", or any request to publish a new version.…

runkids/skillshare · 87 tokens

github-release-briefing-skill

Create a source-linked briefing for the latest published GitHub release of a public repository. Use for engineering teams tracking a dependency release; do not use it to publish releases or change repositories.

FrancyJGLisboa/agent-skill-creator · 45 tokens

publish

Publish oh-my-opencode to npm by triggering the GitHub Actions publish workflow and verifying its artifacts. Ship-only: never runs pre-publish-review or re-reviews merged code unless the user explicitly asks. Argument: . Triggers: publish, release, deploy, npm publish.

code-yeongyu/oh-my-openagent · 68 tokens