ship

ship is a skill for Claude Code, Codex from wsauret/flywheel. It costs 29 tokens per session (1,031 once invoked), scanned A, original, MIT.

A Git workflow that creates a branch when needed, commits and pushes your changes, and opens a pull request (PR) for review.

In plain words
What is it for?
Use it when changes are ready to share: it checks the current Git state, creates a descriptive branch if needed, commits the work, pushes it, and opens a PR.
Why use it?
It removes the repeated manual steps involved in sending finished code for review. It also keeps commit and PR wording concise and written as if you wrote it.

Skill for Claude CodeCodex

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

Made for: Claude Code, Codex.

Or install flywheel, the plugin that ships this one along with the rest of its 15 skills, 15 agents.

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/wsauret/flywheel/ship.svg)](https://agentmods.dev/skills/wsauret/flywheel/ship)
Your own site
<a href="https://agentmods.dev/skills/wsauret/flywheel/ship"><img src="https://agentmods.dev/badge/skills/wsauret/flywheel/ship.svg" alt="Measured on agentmods" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,031 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.00029 $0.01031
Opus 5 $0.00015 $0.00515
Sonnet 5 $0.00006 $0.00206
Haiku 4.5 $0.00003 $0.00103

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

flywheel/skills/ship/SKILL.md · 144 lines

How it starts

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

Ship Changes

Automates the full flow: branch creation (if needed), commit, push, and PR creation with a concise description.


Important Rules

  • BLOCKING: NEVER add Co-Authored-By lines or Claude attribution to commits or PR descriptions
  • BLOCKING: NEVER mention that the PR description was generated by an AI or assistant
  • Write all commit messages and PR descriptions as if the user wrote them
  • Use imperative mood for commit messages
  • Keep PR descriptions concise and focused on the "why"

Phase 1: Assess Current State

Run these commands in parallel:

git status
git diff --stat
git diff --staged --stat
git log --oneline -5
git rev-parse --abbrev-ref HEAD

Determine:

  • Current branch: Are we on the base branch (main/master/develop)?
  • Changes: What files are modified, staged, or untracked?
  • If no changes exist: Inform the user and stop.

Phase 2: Create Branch (if on base branch)

If current branch is main, master, or develop:

  1. Analyze the changes to generate a short, descriptive branch name
  2. Use format: <type>/<short-description> (e.g. fix/search-pagination, feat/match-scoring)
  3. Present the branch name to the user for confirmation using AskUserQuestion
  4. Create and switch to the branch:
    git checkout -b <branch-name>
    

If already on a feature branch, skip this phase.


Phase 3: Commit Changes

  1. Review git diff (staged and unstaged) to understand all modifications
  2. Group related changes logically — prefer one commit unless changes are clearly separate concerns
  3. Stage files with specific paths (never use git add -A or git add .)
  4. Draft clear commit message(s):
    • Imperative mood ("Add feature" not "Added feature")
    • Focus on why, not just what
    • First line under 72 characters
  5. Create the commit(s) — do NOT add any Co-Authored-By lines
  6. Verify with git log --oneline -3

If $ARGUMENTS includes a commit message hint, use it as guidance.

Read the full file on GitHub · 144 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 · 144 lines · 29 tokens per session scan A 9615b633f829

Subscribe to this mod's changes

ship is a skill published in the GitHub repository wsauret/flywheel (14 stars, last pushed today), licensed MIT. It adds 29 tokens to every session and 1,031 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-30.