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.
npx skills add bop-clocktower/canary --skill canary-shipgit clone --depth 1 https://github.com/bop-clocktower/canaryWrote 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.
[](https://agentmods.dev/skills/bop-clocktower/canary/canary-ship)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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 originfirst, 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.
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.
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.
- 4d ago Changed · +5 lines b3528c2ab78f
- 9d ago First seen · 173 lines · 176 tokens per session scan A 6c8984b05879
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.
Other skills, from other repositories
github
GitHub via gh CLI: PRs, issues, reviews, repos, auth.
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.
release
Release gentle-pi through GitHub and npm. Trigger: release, publish, npm publish, GitHub release, version bump.
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…
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.
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"…