land-and-deploy

land-and-deploy is a skill for Claude Code, Codex from CODE-SAURABH/OpenSkills. It costs 70 tokens per session (2,238 once invoked), scanned A, original, MIT.

A release workflow for merging an approved code change, deploying it, and checking that the production version is healthy.

In plain words
What is it for?
Use it after approval to check readiness, merge one change, monitor CI and deployment, verify production, and confirm the feature is live.
Why use it?
It reduces the risk of treating approval or passing tests as proof that users can safely use the change.

Skill for Claude CodeCodex

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/code-saurabh/openskills/land-and-deploy
Any agent
npx skills add CODE-SAURABH/OpenSkills --skill land-and-deploy
Clone the repo
git clone --depth 1 https://github.com/CODE-SAURABH/OpenSkills

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 land-and-deploy

README.md
[![agentmods](https://agentmods.dev/badge/skills/code-saurabh/openskills/land-and-deploy.svg)](https://agentmods.dev/skills/code-saurabh/openskills/land-and-deploy)
Your own site
<a href="https://agentmods.dev/skills/code-saurabh/openskills/land-and-deploy"><img src="https://agentmods.dev/badge/skills/code-saurabh/openskills/land-and-deploy.svg" alt="Measured on agentmods" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,238 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00070 $0.02238
Opus 5 $0.00035 $0.01119
Sonnet 5 $0.00014 $0.00448
Haiku 4.5 $0.00007 $0.00224

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

Security

Grade A, and why

land-and-deploy 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 5d 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.

curl -sf https://your-app.com/health | jq .
land-and-deploy/SKILL.md · 299 lines

How it starts

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

Land and Deploy

You are the release engineer who takes an approved PR from "approved" to "verified in production." This is the final mile. Everything before this was preparation. This is the moment where preparation meets reality — and reality has a way of finding surprises.

Go slow here. Every step has a verification. Never assume a step succeeded without checking.


Land and Deploy Principles

  • Approved is not shipped. CI can pass and the deploy can still fail. The feature can deploy and still not reach users. Verify at every stage.
  • One PR per deploy. Never stack deploys. Land one, verify it, then land the next.
  • The rollback plan is not optional. Know how to undo this deploy before you start it.
  • Speed kills here. The pressure to ship fast causes skipped verification steps. Skipped steps cause incidents. Take the five extra minutes.
  • Silence after deploy is not success. Actively verify — do not assume it worked because nothing broke loudly.

Step 0: Pre-Land Checklist

Before touching the merge button:

  • PR has explicit approval from a qualified reviewer
  • All CI checks are green — not just the required ones
  • No merge conflicts (re-check — new commits to main since approval can create conflicts)
  • Deploy environment is ready (no ongoing incident, no freeze window, no other deploy in progress)
  • Rollback plan confirmed: know the exact command to revert this deploy
  • Feature flag confirmed (if applicable): deploy can happen before the flag is flipped
  • On-call / relevant team notified if this is a high-risk change
  • Database migrations reviewed: are they zero-downtime?

Step 1: Merge

Choosing the merge strategy

Strategy When to use Effect on history
Squash merge Feature branches with messy interim commits One clean commit on main per PR
Merge commit Long-lived branches, audit trail needed Preserves full branch history
Rebase merge Linear history required, clean commits on branch Linear history, replays commits

Read the full file on GitHub · 299 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. 5d ago First seen · 299 lines · 70 tokens per session scan A abffe117e353

Subscribe to this mod's changes

land-and-deploy is a skill published in the GitHub repository CODE-SAURABH/OpenSkills (2 stars, last pushed 1mo ago), licensed MIT. It adds 70 tokens to every session and 2,238 once invoked, about $0.0003 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

aws-ci-cd-release-engineer

Review AWS CI/CD and release safety across CodePipeline, CodeBuild, CodeDeploy, GitHub Actions, GitLab, artifact provenance, deployment gates, approvals, tests, progressive delivery, rollback, change correlation, and incident-prevention recommendations. Use when AWS releases or pipelines can affect production…

VincentChuWaiChow/vanguard-frontier-agentic · 69 tokens

merge-queue-thrash-stop-inflow-and-open-prs-as-drafts

When main moves faster than the slowest CI leg, every open branch goes stale before it can merge and the whole queue jams with nothing red. Use when: (1) several PRs sit at mergeStateStatus BEHIND with auto-merge armed and none of them lands; (2) branches are being updated, re-running CI and going stale again before…

wan-huiyan/agent-traffic-control · 285 tokens

claude-plugin-repo-ci-release

Wire up CI validation and automatic release-cutting for a Claude Code plugin or marketplace repo (a repo with a .claude-plugin/marketplace.json and plugins/). Adds two GitHub Actions — a structure validator that runs on every PR/push, and a release-on-version-bump job that cuts a GitHub Release whenever a VERSION file…

wan-huiyan/claude-ecosystem-hygiene · 308 tokens

abd-devops

ABD DevOps agent: scaffolds CI/CD, validates .env.example coverage, checks Dockerfile hygiene, and handles release tasks.

RealDougEubanks/ClaudeMarketplace · 30 tokens

github-release-management

Comprehensive GitHub release orchestration with AI swarm coordination for automated versioning, testing, deployment, and rollback management.

ruvnet/RuView · 27 tokens

agent-github-modes

Agent skill for github-modes - invoke with $agent-github-modes.

ruvnet/ruflo · 21 tokens