ship

ship is a skill for Claude Code, Codex from HumanDealer/vibeproof. It costs 32 tokens per session (538 once invoked), scanned A, original, MIT.

A workflow skill for taking a completed code change through branch checks, quality checks, commit, push, and pull-request creation. A pull request is a proposed change submitted for review before being merged.

In plain words
What is it for?
Use it when asked to ship a change, deploy it, open a pull request, or push finished work for review.
Why use it?
It provides a repeatable release path and stops the change when the required lint, type, test, or secret checks fail.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when asked to ship a change, deploy it, open a pull request, or push finished work for review.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/humandealer/vibeproof/ship
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 HumanDealer/vibeproof --skill ship
Clone the repo
git clone --depth 1 https://github.com/HumanDealer/vibeproof

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 ship

README.md
[![agentmods](https://agentmods.dev/badge/skills/humandealer/vibeproof/ship/github.svg)](https://agentmods.dev/skills/humandealer/vibeproof/ship)
Your own site
<a href="https://agentmods.dev/skills/humandealer/vibeproof/ship"><img src="https://agentmods.dev/badge/skills/humandealer/vibeproof/ship/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 ship

Your own site · 80×15
<a href="https://agentmods.dev/skills/humandealer/vibeproof/ship"><img src="https://agentmods.dev/badge/skills/humandealer/vibeproof/ship.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 538 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00032 $0.00538
Opus 5 $0.00016 $0.00269
Sonnet 5 $0.00006 $0.00108
Haiku 4.5 $0.00003 $0.00054

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

Security

Grade A, and why

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

skills/ship/SKILL.md · 63 lines

What it actually says

Ship

Take a finished change from working tree to an open PR. This skill runs the real gate — vibeproof check — and stops if it returns BLOCKED. It does not "enforce" by willpower: the deny-list (templates/settings.deny.json) is what physically blocks a push to main or a --no-verify. This skill is the happy path that respects those gates.

When to use

The human says "ship it", "deploy this", "open a PR", "push it up", or the implementation is done and the next step is to land it.

Steps

  1. Confirm you're not on a protected branch.

    git branch --show-current
    

    If main / master / production → create a feature branch now: git checkout -b <type>/<scope>-<desc> (see rules/git-workflow.md).

  2. Run the gate (rules/code-quality.md):

    vibeproof check        # lint · types · tests · secret scan, one verdict line
    

    Proceed only on READY. On BLOCKED, fix the ✗ lines — do not proceed on red. Paste the verdict line as your evidence; "looks good" is not evidence.

  3. Review the diff yourself.

    git diff
    

    No secrets, no debug prints, no commented-out code, no stray files.

  4. Commit atomically. One logical change per commit, message in <type>(<scope>): <summary> format (rules/git-workflow.md).

  5. Push the branch.

    git push -u origin <branch>
    
  6. Open the PR with a Summary (what + why) and a Test plan (how you verified). Use the repo's PR template if present.

  7. Wait for CI to be green. A failure → read the log, fix the root cause, push the fix. Never merge red.

  8. Merge (squash/rebase per convention), delete the branch, return to a fresh main.

Never

  • Push straight to main.
  • --no-verify or [skip ci].
  • Claim shipped before CI is green.
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. 9d ago First seen · 63 lines · 32 tokens per session scan A 4c4cbc2c2b01

Subscribe to this mod's changes

ship is a skill published in the GitHub repository HumanDealer/vibeproof (2 stars, last pushed 3mo ago), licensed MIT. It adds 32 tokens to every session and 538 once invoked, about $0.0002 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-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

git-github-flow

Use for branch prep, clean commits, PR descriptions, GitHub issue triage, changelogs, release notes, review response, merge readiness, or publishing a branch safely.

DominikTobureto/awesome-grok-build · 41 tokens

infrastructure-publishing

Skill for the publishing infrastructure module providing academic publishing workflows including BibTeX CLI citation generation, APA/MLA citation helper functions, DOI management, Zenodo publication, arXiv submission preparation, GitHub releases, PyPI and TestPyPI package distribution, static-site deployment to GitHub…

docxology/template · 127 tokens

template-publish

Publishing scripts for DOI-bearing project releases, optional mirror uploads, PyPI release validation, post-publish verification, and publication export. Use with docs/guides/publication-runbook.md for standalone GitHub + Zenodo release workflows.

docxology/template · 52 tokens

handoff

Ship completed work: verify locally, commit related changes, push, create or update the PR, watch CI/reviews, and fix until merge-ready or escalated. Use for "ship it", "create PR", "handoff", or finished code needing delivery.

heliohq/ship · 56 tokens

git-workflow

Helps with git workflows including conventional commit messages, branching strategies, merge conflict resolution, and changelog generation. Triggers on: "git commit message", "branching strategy", "resolve conflict", "generate changelog".

timwukp/agent-skills-best-practice · 49 tokens