ship

ship is a skill for Claude Code, Codex from AbdurRafay2004/handoff. It costs 105 tokens per session (2,725 once invoked), scanned A, original, MIT.

A release workflow for moving verified code from a computer into a shared repository or live environment. It covers tasks such as creating a branch, opening or merging a pull request, deploying, and checking the result.

In plain words
What is it for?
Use it when you need to ship, deploy, merge, push, release, or make a change live.
Why use it?
It reduces the risk of releasing untested or broken changes. It also requires evidence, such as passing checks or a live URL, so the result can be judged clearly.

Skill for Claude CodeCodex

Part of the handoff plugin — 15 skills, 3 hooks 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 skills/abdurrafay2004/handoff/ship
Any agent
npx skills add AbdurRafay2004/handoff --skill ship
Clone the repo
git clone --depth 1 https://github.com/AbdurRafay2004/handoff

Made for: Claude Code, Codex.

Or install handoff, the plugin that ships this one along with the rest of its 15 skills, 3 hooks.

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 ship

README.md
[![agentmods](https://agentmods.dev/badge/skills/abdurrafay2004/handoff/ship.svg)](https://agentmods.dev/skills/abdurrafay2004/handoff/ship)
Your own site
<a href="https://agentmods.dev/skills/abdurrafay2004/handoff/ship"><img src="https://agentmods.dev/badge/skills/abdurrafay2004/handoff/ship.svg" alt="Measured on agentmods" height="20"></a>
Per session 105 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,725 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 $0.00105 $0.02725
Opus 5 $0.00053 $0.01362
Sonnet 5 $0.00021 $0.00545
Haiku 4.5 $0.00011 $0.00272

Measured 5d ago against content hash 18871f7c9c0b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

ship 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.

| Config only | `curl -sf <url> -o /dev/null -w "%{http_code}"` — expect 200 |
skills/ship/SKILL.md · 211 lines

How it starts

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

Ship

Part of the Ship phase — see the workflow skill for tiers and sequencing.

Shipping is the phase where mistakes become public and expensive. The rule that governs everything below: every ship step ends with evidence a non-coding PM can judge — a PR URL, green CI, a deploy URL, smoke-check output, a screenshot. Never "deployed, should be fine." Show the thing.

Tier scaling

Tier Ship process Evidence at the end
T1 branch → commit → PR → merge. Deploy only if the change is user-visible or the user asks. PR URL + green CI
T2 T1 + deploy + single-pass smoke check on the live URL. Deploy URL + smoke output
T3 (money/auth/data/migrations) Full runbook: rollback criteria written BEFORE deploying, staged rollout, post-deploy monitoring, T+24h check. See references/launch-runbook.md. Runbook with each gate checked + live evidence

Never enter Ship without a passing Verify phase (verify-done). Shipping does not re-litigate verification — but it does re-run it when code changes (below).

Git hygiene

  • Never git add -A or git add .. Stage only the files you changed for this task, by explicit path. Unrelated dirt in the working tree stays out of your commit — it belongs to another change or to nobody.
  • Bisectable commits. Group the diff into logical units, one coherent change per commit (not one file per commit). Order so dependencies land first:
    1. Infrastructure: config, migrations, route/schema additions
    2. Data layer and services (with their tests)
    3. UI: components, pages, styles (with their tests)
    4. Docs/changelog last A module and its test file travel in the same commit. Each commit must be independently valid — no broken imports, no references to code that doesn't exist yet. Small diffs (<50 lines across <4 files) can be a single commit.
  • Every commit revertible. git revert <sha> on any single commit should cleanly undo one logical change. If a schema change and dependent code can't be reverted independently, note that in the commit body — it changes the rollback plan.
  • Never force push. Never rewrite pushed history. Plain git push only. Sole exception: scrubbing a leaked secret from history (see security), with the user's explicit approval — rotate the secret first.

Read the full file on GitHub · 211 lines

Files

What ships with it

1 file 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. 5d ago First seen · 211 lines · 105 tokens per session scan A 18871f7c9c0b

Subscribe to this mod's changes

ship is a skill published in the GitHub repository AbdurRafay2004/handoff (4 stars, last pushed 1mo ago), licensed MIT. It adds 105 tokens to every session and 2,725 once invoked, about $0.0005 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

release

Release a new version of the mumei repository. Invoke when the user gives an explicit release instruction ("release it", "/release", "patch release", "ship 0.2.0"). Takes no argument or "patch" / "minor" / "major" for a SemVer bump, or a direct version such as "0.2.0". Wraps any uncommitted changes into a single…

iroha924/mumei · 144 tokens

update

Safe cc10x upgrade that preserves local modifications. Stashes diffs, pulls upstream, rebuilds cache, rebases patches. Use this skill when: updating cc10x, upgrading, pulling latest cc10x, syncing plugin, refreshing cache, or checking for new versions. Triggers: update cc10x, upgrade cc10x, pull cc10x, sync plugin…

romiluz13/cc10x · 97 tokens

checkpoint

Write the current working state (task, decisions, files touched, open problems, next steps) to .amber/STATE.md so it survives compaction and session restarts. Use when the user asks to checkpoint/save state, before risky long operations, when context feels heavy, or before ending a work session.

yanfeid/claude-amber · 62 tokens

focus

Declare a focus contract for the current task to keep context lean — scopes which files/dirs are in play, bans out-of-scope exploration, and routes broad searches to subagents. Use when starting a task, when the user says "focus on X", or when the session is drifting across unrelated parts of the codebase.

yanfeid/claude-amber · 66 tokens

diet

Audit what is eating the context window in this project (CLAUDE.md size, MCP servers, rules that should be skills) and produce a concrete slimming plan with estimated token savings. Use when the user complains about context filling up fast, frequent compaction, or asks to optimize/reduce context usage.

yanfeid/claude-amber · 61 tokens

resume

Reload saved working state from .amber/ (STATE.md, FOCUS.md, checkpoint.md) and continue the previous task. Use when the user says resume/continue where we left off, or at the start of a session in a project that has an .amber directory.

yanfeid/claude-amber · 55 tokens