canary-ship

canary-ship is a skill for Claude Code from bop-clocktower/canary. It costs 176 tokens per session (2,346 once invoked), scanned A, original, MIT.

A final review-and-merge process for a completed code change on a feature branch. It uses adversarial review, meaning reviewers actively look for defects before the change reaches the main branch.

In plain words
What is it for?
Use it when a finished change needs review, fixes, a commit, a pull request, CI checks, and a squash merge into the main branch.
Why use it?
It catches confirmed problems before merging and requires regression tests, helping prevent a locally passing change from introducing bugs in the shared codebase.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; mentions subagents; mentions AGENTS.md.

Part of the canary plugin — 22 skills, 13 commands, 8 agents, 4 hooks shipped together

Good fit Use it when a finished change needs review, fixes, a commit, a pull request, CI checks, and a squash merge into the main branch.

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

Made for: Claude Code.

Or install canary, the plugin that ships this one along with the rest of its 22 skills, 13 commands, 8 agents, 4 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 canary-ship

README.md
[![agentmods](https://agentmods.dev/badge/skills/bop-clocktower/canary/canary-ship/github.svg)](https://agentmods.dev/skills/bop-clocktower/canary/canary-ship)
Your own site
<a href="https://agentmods.dev/skills/bop-clocktower/canary/canary-ship"><img src="https://agentmods.dev/badge/skills/bop-clocktower/canary/canary-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 canary-ship

Your own site · 80×15
<a href="https://agentmods.dev/skills/bop-clocktower/canary/canary-ship"><img src="https://agentmods.dev/badge/skills/bop-clocktower/canary/canary-ship.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 176 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,346 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.00176 $0.02346
Opus 5 $0.00088 $0.01173
Sonnet 5 $0.00035 $0.00469
Haiku 4.5 $0.00018 $0.00235

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

Security

Grade A, and why

canary-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.

agents/skills/claude-code/canary-ship/SKILL.md · 178 lines

How it starts

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

Canary Ship

The last mile of a change is where quality is won or lost: a plausible-looking diff merges, and the bug nobody looked for ships with it. This skill is the ship gate — the disciplined path from "the code is written and tests pass" to "it's merged on main with CI green." Its spine is a real adversarial review before the merge button, not after, because the cheapest place to catch a defect is the one before it reaches main.

It is not a code generator. It assumes the change already exists on a feature branch and passes the suite locally. Its job is to pressure-test that change, resolve what the pressure surfaces, and integrate it under this repo's conventions without you having to re-remember them each time.

When this fires vs. when it doesn't

Use it when the work is done and green and the remaining verb is "ship", "merge", "PR it", "take it home". Do not use it to do the implementation, to merge something whose tests you haven't run, or to force a merge past a failing gate. If the change isn't on a branch yet, make the branch first (see AGENTS.md branch hygiene) — never ship from main.

Preconditions (verify before starting)

  • On a feature branch, not main (git branch --show-current).
  • The change is implemented and the relevant suite + lint pass locally. If you can't confirm that, stop and run them — the gate reviews a finished change.
  • git fetch origin first, then know your diff base (origin/main...). Other sessions may be active on this repo; trust the remote, not stale local state.

The pipeline

Five phases. Do them in order; each depends on the last. Track them as todos so none is silently skipped.

1 · Review — two independent reviewers, in parallel, on the diff

Spawn two review subagents in the same turn so they run concurrently, each scoped to the actual change (not the whole repo):

  • a correctness/design pass — harness-code-reviewer — hunting real bugs, broken contracts, and inconsistencies;
  • an adversarial pass — harness-adversarial-reviewer — constructing failure scenarios: assumption violations, composition failures across all callers of anything you changed, and blind spots in new guards or tests.

Read the full file on GitHub · 178 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 Changed · +5 lines b3528c2ab78f
  2. 9d ago First seen · 173 lines · 176 tokens per session scan A 6c8984b05879

Subscribe to this mod's changes

canary-ship is a skill published in the GitHub repository bop-clocktower/canary (4 stars, last pushed yesterday), licensed MIT. It adds 176 tokens to every session and 2,346 once invoked, about $0.0009 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 skills, from other repositories

github

GitHub via gh CLI: PRs, issues, reviews, repos, auth.

NousResearch/hermes-agent · 19 tokens

github

Full GitHub CLI control — issues, PRs, code reviews, repo management. Uses gh CLI with auth detection, rate limiting, and templates. Triggers on: github, issue, pull request, PR, code review, repo, branch, label, assignee, milestone, release, workflow, actions.

adolfousier/opencrabs · 0 tokens

release

Release gentle-pi through GitHub and npm. Trigger: release, publish, npm publish, GitHub release, version bump.

Gentleman-Programming/gentle-pi · 28 tokens

pre-publish-review

Nuclear-grade 12-agent pre-publish release gate. Runs /get-unpublished-changes to detect all changes since last npm release, spawns up to 10 ultrabrain agents for deep per-change analysis, invokes /review-work (orchestrator manual QA plus one gate reviewer) for holistic review, and 1 oracle for overall release…

code-yeongyu/oh-my-openagent · 161 tokens

parallel-pr-review

Use when asked to "review the open PRs", review a batch or stack of pull requests, or run a recurring PR-review pass on a repo — especially with many PRs, stacked branches, conflicts, or security-sensitive changes. Covers grouping, fan-out to review subagents, verdict synthesis, and posting.

suyoumo/ClawProBench · 67 tokens

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