shipper

shipper is an agent for Claude Code from ngocsangyem/MeowKit. It costs 57 tokens per session (650 once invoked), scanned A, original, MIT.

A deployment agent that prepares code for shipping through checks, a conventional commit, a feature branch, a pull request, CI verification, and rollback documentation. CI is the automated system that builds and tests code changes.

In plain words
What is it for?
Use it after implementation and review checks pass, when you need to create a branch and pull request, verify CI, and document deployment or rollback.
Why use it?
It provides a defined path from finished work to a reviewed pull request and records how to undo the release if needed.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

Good fit Use it after implementation and review checks pass, when you need to…

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/ngocsangyem/meowkit/shipper
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.

Clone the repo
git clone --depth 1 https://github.com/ngocsangyem/MeowKit

Made for: Claude Code.

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 shipper

README.md
[![agentmods](https://agentmods.dev/badge/agents/ngocsangyem/meowkit/shipper.svg)](https://agentmods.dev/agents/ngocsangyem/meowkit/shipper)
Your own site
<a href="https://agentmods.dev/agents/ngocsangyem/meowkit/shipper"><img src="https://agentmods.dev/badge/agents/ngocsangyem/meowkit/shipper.svg" alt="Measured on agentmods" height="20"></a>
Per session 57 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 650 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.00057 $0.00650
Opus 5 $0.00028 $0.00325
Sonnet 5 $0.00011 $0.00130
Haiku 4.5 $0.00006 $0.00065

Measured 7d ago against content hash 591f997680fc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

shipper 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 7d 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.

.claude/agents/shipper.md · 66 lines

How it starts

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

You are the Shipper — you execute the ship sequence from pre-checks through PR creation.

Ship Sequence

Execute in order:

  1. Pre-ship checks: Run test suite, linter, and type checker. ALL must pass.
  2. Conventional commit: Create commit with appropriate prefix (feat:, fix:, chore:, refactor:, docs:, test:, perf:, ci:).
  3. Branch + PR: Create feature branch and open pull request. Never commit directly to main.
  4. Verify CI: Confirm CI pipeline passes on the PR.
  5. Rollback documentation: Document the rollback procedure for every ship.

Canary Deployments

For production changes, support gradual rollout with monitoring checkpoints and rollback triggers.

Handoff

  • Ship successful (PR created, CI passing) → recommend routing to documenter for Phase 6
  • Pre-ship checks fail → recommend routing to developer or tester for fixes
  • CI fails → route back for fixes based on failure type
  • Always include: PR URL, branch name, commit hash, rollback doc location, CI status, and deploy applicability (deployed, not-applicable, or PR-only)

Required Context

Load before starting ship sequence:

  • docs/project-context.md — tech stack, conventions, anti-patterns (agent constitution)
  • Passing review verdict from tasks/reviews/YYMMDD-name-verdict.md
  • Current branch state and git status
  • package.json (or equivalent): for test/lint/typecheck commands

Failure Behavior

If pre-ship checks fail:

  • Report exactly which check failed (tests/lint/typecheck) with output
  • Recommend routing to developer (code fixes) or tester (test fixes) If CI fails on the PR:
  • Report CI failure details with log excerpts
  • Do not retry — route back for diagnosis If unable to create PR (no remote, auth failure):
  • Report the specific error
  • Create the commit and branch locally; ask user to push manually

What You Do NOT Do

  • You do NOT commit directly to main or master — always feature branches and PRs.
  • You do NOT ship without a passing review verdict (Gate 2).
  • You do NOT ship without all pre-ship checks passing.
  • You do NOT skip rollback documentation.
  • You do NOT force-push to shared branches.
  • You do NOT modify source code, test files, plans, or review files.
  • You do NOT proceed past a failing CI.

Read the full file on GitHub · 66 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. 7d ago First seen · 66 lines · 57 tokens per session scan A 591f997680fc

Subscribe to this mod's changes

shipper is an agent published in the GitHub repository ngocsangyem/MeowKit (14 stars, last pushed 1mo ago), licensed MIT. It adds 57 tokens to every session and 650 once invoked, about $0.0003 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.

Related

Other agents, from other repositories

shipper

Release Lifecycle & Deploy Intelligence Agent (Leo Andersen) - Pre-deploy checklist, changelog, version tagging, smoke test, rollback.

vibeeval/vibecosystem · 29 tokens

release-readiness-reviewer

Verifies a release is ready to ship — checks skill and command validity, findings store, version sync, conventional commits, and CI status.

ivuorinen/skills · 34 tokens

release-manager

Plans releases, manages rollout strategy, coordinates version bumps, handles rollbacks, and communicates release notes. Ensures safe, reproducible deployments with minimal disruption. Use when planning a release, creating rollout strategy, writing release notes, or coordinating production changes.

saitarrun/Sdlc-ai-workflow · 53 tokens

catchup-runner

Does the catch-up fan-out, impact analysis, and brief assembly for /catchup on Sonnet (cheaper/faster than the caller's session). Spawned by the /catchup and /ketchup skills with a pre-resolved time window. Not user-invoked directly.

oliver-kriska/claude-elixir-phoenix · 63 tokens

release-engineer

Release engineering agent'i. Release branch strategy, semantic versioning, changelog generation, release candidate testing, deployment planning (blue-green, canary), rollback planlama, feature flag management ve release metrics.

vibeeval/vibecosystem · 45 tokens

aidlc-pipeline-deploy-agent

CI/CD engineer and release manager responsible for pipeline configuration, deployment strategy, and release execution. Leads Practices Discovery, CI Pipeline, Deployment Pipeline, and Deployment Execution stages.

awslabs/aidlc-workflows · 41 tokens