ship

ship is a skill for Claude Code from mickeyyaya/evolve-loop. It costs 26 tokens per session (634 once invoked), scanned A, original, Apache-2.0.

A final release step that creates one Git commit and tag after an audit passes. It also checks release markers and records the shipment in a ledger tied to the current work cycle.

In plain words
What is it for?
Use it to finish an audited development cycle, create its release commit and tag, verify version consistency, and record what was shipped.
Why use it?
It prevents publishing code that has not passed the required audit and blocks competing release attempts for the same cycle. The checks also keep version information and release records consistent.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions CLAUDE.md; mentions Codex.

Part of the evo plugin — 26 skills, 27 commands, 97 agents, 3 hooks shipped together

Good fit Use it to finish an audited development cycle, create its release commit…

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

Made for: Claude Code.

Or install evo, the plugin that ships this one along with the rest of its 26 skills, 27 commands, 97 agents, 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/mickeyyaya/evolve-loop/ship.svg)](https://agentmods.dev/skills/mickeyyaya/evolve-loop/ship)
Your own site
<a href="https://agentmods.dev/skills/mickeyyaya/evolve-loop/ship"><img src="https://agentmods.dev/badge/skills/mickeyyaya/evolve-loop/ship.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 634 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.00026 $0.00634
Opus 5 $0.00013 $0.00317
Sonnet 5 $0.00005 $0.00127
Haiku 4.5 $0.00003 $0.00063

Measured 3d ago against content hash a4eaba432e03, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, 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 3d 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 · 61 lines

How it starts

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

ship

Sprint 3 composable skill. Wraps the Ship phase. The atomic commit at the end of every successful cycle.

When to invoke

  • After audit returns Verdict PASS (or WARN with explicit override)
  • Cycle is in audit phase, transitioning to ship

When NOT to invoke

  • Audit verdict is FAIL or ABORT
  • The current tree-state SHA differs from what the auditor saw (cycle-binding violation)
  • Ship class is unclear (use --class cycle, --class manual, or --class release explicitly)

Workflow

Step Action Exit criteria
1 Verify audit verdict = PASS via gate_audit_to_ship Gate passes
2 Run legacy/scripts/utility/release.sh <version> for consistency check Markers consistent
3 Run legacy/scripts/lifecycle/ship.sh "<commit message>" Atomic commit + tag created
4 Verify ledger entry added kind: "ship" with cycle binding

Single-writer invariant

Ship is ATOMIC by design — even if other phases fan out, Ship cannot. There is one git commit per cycle. Concurrent ship attempts on the same cycle are blocked by phase-gate-precondition.sh (only one active_agent: orchestrator at ship phase).

Cycle-binding (v8.13.0+)

legacy/scripts/lifecycle/ship.sh refuses to ship if the current tree-state SHA differs from the SHA captured at audit time (in the auditor's ledger entry). Prevents "audit cycle 50, ship cycle 51" exploits. This guarantee is preserved through Sprint 3's tri-layer refactor.

Phase facts

Fact Value
Phase ship (control archetype, mandatory)
Persona agents/evolve-orchestrator.md
Profile .evolve/profiles/orchestrator.json — CLI codex-tmux, tier balanced, single-writer
Inputs audit-report.md

Composition

Read the full file on GitHub · 61 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. 3d ago First seen · 61 lines · 26 tokens per session scan A a4eaba432e03

Subscribe to this mod's changes

ship is a skill published in the GitHub repository mickeyyaya/evolve-loop (5 stars, last pushed 3d ago), licensed Apache-2.0. It adds 26 tokens to every session and 634 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-09-03.

Related

Other skills, from other repositories

release

Cut a brooks-lint release: set the version in package.json, propagate it across all four plugin manifests and every version-bearing text file (README badges, docs site metadata), write the CHANGELOG entry, validate, then commit, push, tag, and publish the GitHub release. Triggers when the maintainer asks to "release"…

hyhmrright/brooks-lint · 135 tokens

git-branchless

Use when asked for multi-commit stack edits, rebases, fixups, or stacked-PR publishing with branchless git idioms. Not for plain-git workflows in repos without branchless.

OutlineDriven/odin-claude-plugin · 45 tokens

bump-version

Bump the Logic-Lens version across all six metadata locations at once (package.json, the four plugin manifests, and the README badge), then validate. Use when cutting a release or when npm run validate reports a version mismatch.

hyhmrright/logic-lens · 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

review

Structured code review with parallel audit agents, confidence-scored triage, and optional auto-fix. Examines uncommitted changes, staged diffs, commit ranges, or specific paths. Produces a tiered report (MUST-FIX / RECOMMENDED / NIT) backed by evidence, then optionally applies fixes with verification.

greglas75/zuvo · 70 tokens

release-docs

Diff-driven documentation sync after a release. Determines what source files changed, delegates changelog to zuvo:docs, updates only docs whose source changed. Flags: --dry-run, explicit range argument.

greglas75/zuvo · 44 tokens