shipkit-reviewer-shipping

shipkit-reviewer-shipping is an agent for Claude Code from stefan-stepzero/shipkit. It costs 53 tokens per session (1,647 once invoked), scanned A, original, MIT.

A shipping-readiness reviewer for software implementations. It checks security, functionality, code quality, specifications, and acceptance criteria, with stricter checks for projects at later stages.

In plain words
What is it for?
Use it to verify an implementation before shipping and produce a structured report for the shipping workflow.
Why use it?
It identifies problems that should block release and reports what needs to be reimplemented. It can also ask specialized quality checks to examine user experience, semantics, or visual behavior.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter; reads .claude/ paths; names the NotebookEdit tool.

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 agents/stefan-stepzero/shipkit/shipkit-reviewer-shipping-agent
Clone the repo
git clone --depth 1 https://github.com/stefan-stepzero/shipkit

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 shipkit-reviewer-shipping

README.md
[![agentmods](https://agentmods.dev/badge/agents/stefan-stepzero/shipkit/shipkit-reviewer-shipping-agent.svg)](https://agentmods.dev/agents/stefan-stepzero/shipkit/shipkit-reviewer-shipping-agent)
Your own site
<a href="https://agentmods.dev/agents/stefan-stepzero/shipkit/shipkit-reviewer-shipping-agent"><img src="https://agentmods.dev/badge/agents/stefan-stepzero/shipkit/shipkit-reviewer-shipping-agent.svg" alt="Measured on agentmods" height="20"></a>
Per session 53 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,647 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.1 $0.00053 $0.01647
Opus 5 $0.00026 $0.00823
Sonnet 5 $0.00011 $0.00329
Haiku 4.5 $0.00005 $0.00165

Measured 5d ago against content hash 6fc8b2943dac, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

shipkit-reviewer-shipping 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 5d 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.

install/agents/shipkit-reviewer-shipping-agent.md · 161 lines

How it starts

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

You are the Shipping Reviewer. You verify that implementation meets specs, is secure, and is ready to ship. You produce structured reports — you never fix the code yourself. You can dispatch QA sub-skills for specialized assessment.

Role

Review code changes against specs and acceptance criteria. Check security, data integrity, and core functionality. Write a structured verification report that tells the shipping orchestrator exactly what needs re-implementation.

Stage Calibration

Before reviewing, read .shipkit/why.json in full and .shipkit/goals/strategic.json for the project stage. Apply blocking rules based on stage:

POC stage — Block ONLY on:

  • Security: exposed secrets in client code, SQL injection
  • Functionality: happy path broken, acceptance criteria not met

MVP stage — Also block on:

  • Auth checks missing on protected routes
  • Input validation missing at boundaries (Zod schemas)
  • Critical error handling gaps on mutations

Growth stage — Also block on:

  • Architecture anti-patterns (per-page auth, scattered try/catch, duplicate fetching)
  • Missing error boundaries
  • Performance regressions
  • Accessibility gaps

Scale stage — Full blocking on all dimensions listed in "What You Block On"

If .shipkit/goals/strategic.json doesn't exist or has no stage, default to MVP blocking rules.

Personality

  • Pragmatic quality standards calibrated by project stage
  • Blocks on security and broken functionality
  • Flexible on polish and style
  • Constructive, not critical — suggests fixes, doesn't just criticize
  • Evidence-based — specific file paths, line numbers, and reproduction steps

What You Block On (Must Fix)

Security Issues

  • Auth checks missing (accessing without login)
  • Data exposed to wrong users (missing RLS)
  • Secrets in client code
  • SQL injection possible
  • XSS vulnerabilities

Data Integrity

  • Input not validated (Zod at boundaries)
  • Race conditions in writes
  • Missing error handling on mutations
  • Data can be corrupted by user input

Read the full file on GitHub · 161 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. 5d ago First seen · 161 lines · 53 tokens per session scan A 6fc8b2943dac

Subscribe to this mod's changes

shipkit-reviewer-shipping is an agent published in the GitHub repository stefan-stepzero/shipkit (1 stars, last pushed 1mo ago), licensed MIT. It adds 53 tokens to every session and 1,647 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-31.

Related

Other agents, from other repositories

challenge-assumptions

Probe lens 2 of 6. Surfaces the hidden premises an argument rests on and tests whether the conclusion survives them being false. Launched by /probe:go and /probe:assume.

ds1/probe · 46 tokens

clarify-thinking

Probe lens 1 of 6. Clarifies key terms, traces where conclusions came from, and exposes reasoning chains that skip a step. Launched by /probe:go and /probe:clarify.

ds1/probe · 46 tokens

evidence-basis

Probe lens 3 of 6. Audits every claim for its source, flags the unsourced and the self-contradicting, and names what evidence is missing. Launched by /probe:go and /probe:evidence.

ds1/probe · 54 tokens

prompts-guide

Interactive guide for using prompt-factory skill to generate mega-prompts. Helps choose from 69 presets or create custom prompts, select formats (XML/Claude/ChatGPT/Gemini), and explains usage. Use when user wants to generate production-ready prompts for any LLM.

alirezarezvani/claude-code-skill-factory · 60 tokens

factory-guide

Main navigation guide for Claude Code Skills Factory. Use when user wants to build custom Skills, Prompts, or Agents. Orchestrates and delegates to specialized guide agents.

alirezarezvani/claude-code-skill-factory · 37 tokens

100x-engineer

Autonomous full-stack engineer that takes a requirement from idea to production-ready code. Researches best approaches, prototypes unknowns, builds a comprehensive plan broken into waves of parallel tasks, executes via sub-agents, tests everything, audits for security, and delivers a final handoff report with any…

christyjacob4/claude-tricks · 100 tokens