verify-and-ship

verify-and-ship is a skill for Claude Code, Codex from cyrusagents/cyrus. It costs 39 tokens per session (1,085 once invoked), scanned A, original, Apache-2.0.

A shipping checklist for completed code changes. It verifies the issue requirements, runs tests and other checks, updates the changelog, and prepares the change for a pull request or merge request.

In plain words
What is it for?
Use it after implementing a change to validate requirements, fix quality-check failures, review the diff, update changelog files, and ship the work.
Why use it?
It reduces the chance of submitting code that fails tests, linting, type checks, or stated acceptance criteria. It also keeps release notes and the review request up to date.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it after implementing a change to validate requirements, fix quality-check failures, review the diff, update changelog files, and ship the work.

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

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 verify-and-ship

README.md
[![agentmods](https://agentmods.dev/badge/skills/cyrusagents/cyrus/verify-and-ship/github.svg)](https://agentmods.dev/skills/cyrusagents/cyrus/verify-and-ship)
Your own site
<a href="https://agentmods.dev/skills/cyrusagents/cyrus/verify-and-ship"><img src="https://agentmods.dev/badge/skills/cyrusagents/cyrus/verify-and-ship/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for verify-and-ship

Your own site · 80×15
<a href="https://agentmods.dev/skills/cyrusagents/cyrus/verify-and-ship"><img src="https://agentmods.dev/badge/skills/cyrusagents/cyrus/verify-and-ship.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,085 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. Third-party audits
  • Socket pass 26 Apr 2026
  • Snyk pass 26 Apr 2026
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00039 $0.01085
Opus 5 $0.00019 $0.00543
Sonnet 5 $0.00008 $0.00217
Haiku 4.5 $0.00004 $0.00109

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

Security

Grade A, and why

verify-and-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 10d 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/verify-and-ship/SKILL.md · 87 lines

How it starts

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

Verify and Ship

After implementing your changes, follow these steps to verify quality and ship the work.

1. Acceptance Criteria Validation (CRITICAL)

Use the issue tracker get_issue tool to fetch the current issue details. Extract ALL acceptance criteria from the issue description and verify each one is satisfied by the implementation. If no explicit criteria exist, validate against the implied requirements from the issue title and description.

2. Quality Checks

Run all applicable quality checks:

  • Tests — Run the full test suite. If tests fail, fix the issues and re-run. Retry up to 3 times. If you cannot resolve failures after 3 attempts, proceed and note the failures in your summary.
  • Linting — Run linting tools and fix any issues found.
  • Type checking — Run TypeScript type checking (if applicable) and fix any errors.
  • Code review — Review your changes for quality, consistency, and best practices. Remove any debug code, console.logs, or commented-out sections.

3. Changelog Update

Check if the project has changelog files:

ls -la CHANGELOG.md CHANGELOG.internal.md 2>/dev/null || echo "NO_CHANGELOG"

If changelog files exist, diff against the base branch to detect entries already added by this branch:

# See what changelog lines this branch has added compared to the base branch
# Replace <base_branch> with the actual base branch from the issue context
git diff <base_branch> -- CHANGELOG.md CHANGELOG.internal.md 2>/dev/null

Handling existing entries:

  • If the diff shows this branch already added a changelog entry for the current issue (matching the issue identifier), update that entry in-place (e.g., to add the PR/MR link or refine the description). Do NOT add a duplicate entry.
  • If the diff shows this branch added changelog entries for a different issue or no entries at all, add a new entry.

Adding or updating entries:

  • Place entries under ## [Unreleased] in the appropriate subsection (### Added, ### Changed, ### Fixed, ### Removed)
  • Focus on end-user impact — be concise but descriptive
  • Include the Linear issue identifier and PR/MR link (format: ([ISSUE-ID](linear_url), [#NUMBER](PR_OR_MR_URL)))
  • Follow Keep a Changelog format

Read the full file on GitHub · 87 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. 10d ago First seen · 87 lines · 39 tokens per session scan A abb9bc7b14c2

Subscribe to this mod's changes

verify-and-ship is a skill published in the GitHub repository cyrusagents/cyrus (800 stars, last pushed today), licensed Apache-2.0. It adds 39 tokens to every session and 1,085 once invoked, about $0.0002 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.