ship

ship is a skill for Claude Code, Codex from kreek/consult. It costs 22 tokens per session (763 once invoked), scanned A, original, MIT.

A guarded release workflow for the Consult repository. It covers committing, merging, version changes, validation, and pushing code, with a confirmation pause at each gate.

In plain words
What is it for?
Use it when releasing Consult, including checking the repository, preparing release commits, updating the appropriate version files, validating the result, and pushing it.
Why use it?
It reduces the risk of publishing the wrong changes or changing the two independent release versions incorrectly.

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/kreek/consult/ship
Any agent
npx skills add kreek/consult --skill ship
Clone the repo
git clone --depth 1 https://github.com/kreek/consult

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/kreek/consult/ship.svg)](https://agentmods.dev/skills/kreek/consult/ship)
Your own site
<a href="https://agentmods.dev/skills/kreek/consult/ship"><img src="https://agentmods.dev/badge/skills/kreek/consult/ship.svg" alt="Measured on agentmods" height="20"></a>
Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 763 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00022 $0.00763
Opus 5 $0.00011 $0.00381
Sonnet 5 $0.00004 $0.00153
Haiku 4.5 $0.00002 $0.00076

Measured 4d ago against content hash 9297e897150e, 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 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 4d 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.

.agents/skills/ship/SKILL.md · 74 lines

How it starts

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

Ship

When to Use

  • Use when the user asks to ship this Consult repository or explicitly invokes $ship.
  • Use only for this repository's maintainer release flow: commit, merge to main, bump release artifacts, validate, and push.

When NOT to Use

  • Do not use for ordinary commits; use the commit skill instead.
  • Do not use for release preparation by itself; use the release skill.
  • Do not use outside this repository.

Iron Law

DO NOT RUN THE WHOLE SHIP FLOW UNATTENDED; STOP AT EVERY CONFIRMATION GATE.

Repo Facts

  • Main branch is main; remote is origin.
  • There are two independent release streams. Never bump them in lockstep.
  • Plugin version lives in plugin/.claude-plugin/plugin.json, plugin/.codex-plugin/plugin.json, plugin/.cursor-plugin/plugin.json, .claude-plugin/marketplace.json, and .cursor-plugin/marketplace.json. plugin/plugin.json should match these too; reconcile drift when bumping.
  • The consult npm package version lives in consult/package.json. Bump it only when the diff changes the published package.
  • Root package.json is private tooling and is not versioned for release.
  • Version marker is the CHANGELOG.md header ## [X.Y.Z] (YYYY-MM-DD). Promote ## [Unreleased] into a dated version section and leave a fresh empty ## [Unreleased] above it.
  • Releases are not git-tagged in this repo. Do not create or push a tag unless the user explicitly asks.
  • Commit messages use imperative subjects and no author-attribution trailers.

Workflow

  1. Pre-flight: run git status and git rev-parse --abbrev-ref HEAD. If the working tree is clean and already on main, report that there is nothing to ship and stop.
  2. Commit: review git diff and git diff --cached, group uncommitted changes into logical commits, propose the grouping, and get user approval before committing on the current branch.
  3. Merge to main, only when not already on main: run git fetch origin, bring main up to date, get user approval, then merge the current branch into main. On conflicts, stop and show the conflicted files.
  4. Bump the version on main: use the release skill to classify the bump from the merged diff, or use the user's explicit patch, minor, or major override. Confirm the proposed version before writing. Update the relevant release artifacts and commit the bump as Release <version>.
  5. Validate and push: run the project validation gate before pushing. Abort on failure. Get user approval before git push origin main.

Read the full file on GitHub · 74 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. 4d ago First seen · 74 lines · 22 tokens per session scan A 9297e897150e

Subscribe to this mod's changes

ship is a skill published in the GitHub repository kreek/consult (1 stars, last pushed yesterday), licensed MIT. It adds 22 tokens to every session and 763 once invoked, about $0.0001 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

deploy-steward

Mainline deploy steward. Consumes ready PRs, owns a lease on mainline landing, refreshes PR state, updates stale branches, waits for CI and deploy gates, merges or queues one candidate at a time, and opens repair tasks for failures.

SethGammon/Citadel · 56 tokens

changelog

Record shipped work in the monthly changelog (append-only). Use when something ships or when asked "what changed", "add to changelog", "release notes", or "what shipped this month".

MedAdemBHA/docflow · 43 tokens

scribe

Route mechanical git prose — commit messages, PR titles/bodies, release notes, changelog entries — to the cheapest healthy model (free local ollama first) instead of burning main-session tokens. Use whenever the user asks to commit, open a PR, cut a release, or write a changelog and the prose can be drafted from the…

kimmingul/xllm · 90 tokens

release

Publish a Unica version to the public marketplace, or resume a release that stalled part-way. Use when asked to cut, ship, promote, or finish a release, or when consumers still see an older version than the latest tag.

IngvarConsulting/unica · 49 tokens

release-support

Поддержка поставки и обновлений 1С. Используй когда нужно проверить сравнение/объединение, поставку, поддержку, расширения, совместимость обновления, миграции данных и release readiness.

IngvarConsulting/unica · 49 tokens

watch

File sentinel that monitors the working directory for changes and marker comments, then auto-triggers appropriate skills. Poll-based via git diff against the last scan commit. Writes intake items for batch processing and routes marker actions through /do. Use for automatic reactions to file changes; do NOT use for…

SethGammon/Citadel · 70 tokens