Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Deployment

ASecurity

Prepare and run a release you can explain and undo — exact artifact identity, environment parity, config and secrets, a rollout strategy matched to blast radius, and a preflight that names the abort condition in advance. Use when planning or performing a deploy, building a release path, or when someone says "ship it" and the steps are not written down anywhere. Not for proving the deployed thing is healthy (release-verification) or for getting back out (rollback), and it never treats a green ...

46 stars
0 votes
0 copies
0 views
Added 9/22/2026
ai-agentsgo

Security Analysis

A100/100

Scanned 9/22/2026

Install to Claude Code

$npx -y skills add nahid-sparktales/agent-dispatcher --skill deployment --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Deployment?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Deployment
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/nahid-sparktales-deployment/badge)](https://www.skillsdirectory.com/skills/nahid-sparktales-deployment)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: deployment
description: Prepare and run a release you can explain and undo — exact artifact identity, environment parity, config and secrets, a rollout strategy matched to blast radius, and a preflight that names the abort condition in advance. Use when planning or performing a deploy, building a release path, or when someone says "ship it" and the steps are not written down anywhere. Not for proving the deployed thing is healthy (release-verification) or for getting back out (rollback), and it never treats a green build or an approved plan as permission to deploy.
---

# Deployment

A release has two halves that get conflated constantly: preparing it, which you can do freely, and
executing it, which is an outward-facing action against a system other people depend on. This skill
covers both and keeps the line between them visible.

## When this fires

A change is heading for an environment other people use, or the path that takes it there is being
built or changed. It does not fire for running something locally, and it does not fire while an
incident is in progress — restoring service outranks release process.

## Procedure

1. **Name the artifact exactly.** A commit SHA, an image digest, a build number — something that
   resolves to one immutable thing. "main", "latest" and "the current branch" are not artifact
   identities; they are queries whose answer changes while you work. Everything downstream, from
   the rollback target to the verification, depends on this being pinned.

2. **Read the delivery path that already exists** before designing one. CI config, deploy scripts,
   the platform's own project settings, and however the last release actually went out. Most
   "we need a deploy pipeline" tasks are really "the existing one has one gap."

3. **Write down how the target environment differs from where you tested.** Data volume and shape,
   scale and replica count, feature-flag values, external dependencies and their credentials,
   network egress, region. Parity is never total — the value is in naming the deltas, because
   every deploy surprise lives in one of them.

4. **Reconcile configuration and secrets against the target.** Every config key the new revision
   reads must already exist in that environment, with a value that is valid there. A missing
   variable typically fails at boot, which is after traffic has been pointed at it. Secrets stay
   references — never inline in a manifest, a log line, a commit, or your report. If a secret needs
   to be created or rotated, that is the user's action, not yours; say which one is missing.

5. **Order the steps that cannot be reordered.** Schema before code, and backward-compatible in
   both directions so old and new run side by side during the rollout; feature flag off before the
   code that reads it ships; a consumer that understands a new message shape before the producer
   emits it. Expand, migrate, contract — in separate releases. See `migrations` for the schema half.

6. **Pick the rollout strategy the blast radius justifies**, and know what each one costs:
   - *Replace in place* — simplest, has a real gap of downtime, fine for internal or low-traffic.
   - *Rolling* — no downtime, but old and new serve simultaneously, so both must tolerate the same
     schema, the same cache entries and the same in-flight jobs.
   - *Blue-green* — a whole second environment, instant cutover, instant switch back; costs double
     capacity and needs shared state to work for both sides.
   - *Canary* — a fraction of traffic first, judged on real signals; only meaningful if you have
     per-revision telemetry to judge it with, and a stated threshold decided before you look.

7. **Write the preflight and the abort condition together.** Preflight: build and tests green on
   *this* artifact, migrations applied and verified, config present, dependencies reachable, the
   rollback target named and still deployable. Abort condition: the specific signal and threshold
   that stops the rollout mid-flight. Decide it now — the moment to define "bad enough to stop" is
   never while watching it happen.

8. **Rehearse in a non-production environment** whose differences from production you listed in
   step 3. A staging deploy proves the mechanism, not the outcome; it does not transfer to
   production, and saying so is part of the report.

9. **Stop at the line.** Preparing is complete; executing is a separate, authorized act. Present:
   the artifact id, the target environment, the strategy, the steps that cannot be undone, the
   rollback path and its rehearsed duration, and anything you could not check. Then ask, in the
   same message, for explicit approval to run it. Production deploys, package publication, DNS
   changes and infrastructure destruction each need their own yes — an earlier "ship it" does not
   cover a step the user has not seen. If approval does not come, the deliverable is a prepared
   release, and it is reported with that word.

10. **Execute with the record open.** One timestamped line per command with its actual output.
    Never run a deploy step whose failure mode you have not thought about. If a step fails
    midway, stop and reconcile what actually happened before re-running anything that could create
    a duplicate release, a second resource, or a half-migrated state.

11. **Hand off to verification.** The deploy command exiting zero is the end of this skill, not the
    end of the release. Go to `release-verification` before the word "deployed" becomes "working".

## Checklist

- [ ] Artifact pinned to an immutable id, used everywhere downstream
- [ ] Existing delivery path read before anything new was written
- [ ] Environment deltas from the test environment written down
- [ ] Every config key present in the target; secrets by reference only
- [ ] Irreversible ordering handled — schema, flags, producers and consumers
- [ ] Strategy chosen against blast radius, with its cost stated
- [ ] Preflight checks and an abort threshold written before starting
- [ ] Rollback target named, and rehearsed or explicitly marked unrehearsed
- [ ] Execution approval asked for separately, per consequential action
- [ ] Timestamped record of what ran and what it returned

## Failure handling

- **A preflight check fails** — that is the result. Report it and stop. A preflight you waive is
  not a preflight.
- **The rollout fails partway** — do not retry blindly. Establish which instances are on which
  revision first; a retry over an unknown state is how you get three revisions serving at once.
- **The deploy tool reports success but you cannot confirm it** — report exactly that. "The command
  succeeded" and "the new revision is serving" are different claims, and the second belongs to
  `release-verification`.
- **You lack access to the target environment** — say so and deliver the prepared release. Do not
  route around missing access with credentials found in the repository.
- **Approval is ambiguous** — treat it as absent. Ask once, plainly, naming the exact action.

## Evidence to report

The artifact id and the environment, named together. The strategy and why that one. The preflight
results, each as its own line. What ran, when, and what it returned. Which steps are irreversible
and what the rollback path is. Then the honest verb: *prepared*, *executed*, or *executed and
handed to verification* — never "deployed" as a stand-in for "working".

Attribution

nahid-sparktalesnahid-sparktales
View sourceMore from nahid-sparktales →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1066601 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

686011 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

651 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →