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 agentmods add skills/willdady/platypus/pre-release-checknpx skills add willdady/platypus --skill pre-release-checkgit clone --depth 1 https://github.com/willdady/platypusWrote 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/willdady/platypus/pre-release-check)<a href="https://agentmods.dev/skills/willdady/platypus/pre-release-check"><img src="https://agentmods.dev/badge/skills/willdady/platypus/pre-release-check.svg" alt="Measured on agentmods" 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.00051 | $0.02706 |
| Opus 5 | $0.00026 | $0.01353 |
| Sonnet 5 | $0.00010 | $0.00541 |
| Haiku 4.5 | $0.00005 | $0.00271 |
Grade A, and why
pre-release-check 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 — 216 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Pre-release check
This is the last thing that runs before a release is cut. Nothing downstream catches what you miss here.
Releases are cut by release-please: a bot PR titled chore(main): release <version>
sits open against main, and the release happens the moment it merges — tagging,
publishing images, and cutting a GitHub release. There is no undo.
Three mechanics shape the whole check:
- The changelog is built only from Conventional Commit subjects on
main. mainsquash-merges with the PR title as the commit subject. A PR titled without afeat/fix/choreprefix lands a commit that contributes nothing to the changelog and nothing to the version bump — a feature ships silently inside a patch release.mainis protected against force-pushes, so a subject that landed wrong cannot be rewritten. It can only be corrected by a follow-up commit.
You end on a verdict: ship or hold. A hedge is a hold. Everything below feeds that one call, so run every step — a skipped step is an unknown, and an unknown holds.
Step 1 — Go green
Confirm the ground first: on main, synced with origin/main, working tree clean.
git fetch --tags && git fetch origin main
git status --short && git log --oneline origin/main..HEAD
Lint, typecheck and tests are not re-run here. CI runs them on every push to main,
so the tip has already been through them — but "CI runs on main" is only a guarantee if
you look at the result. Read it:
git rev-parse origin/main
gh run list --branch main --workflow ci.yml --limit 1 \
--json headSha,status,conclusion,url --jq '.[0]'
The run's headSha must equal origin/main and its conclusion must be success. Three
ways that goes wrong, all holds:
- The newest run is for an older commit. The tip is unverified — most likely it arrived by a push that bypassed the pull request, which is how a security fix lands off a private advisory. Wait for its run, or trigger one.
- No run at all, or one still in progress. Wait for it. An absent result is not a passing one.
- A failing run. Stop here.
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 First seen · 216 lines · 51 tokens per session scan A cbdf44f36d58
pre-release-check is a skill published in the GitHub repository willdady/platypus (72 stars, last pushed yesterday), licensed MIT. It adds 51 tokens to every session and 2,706 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-09-01.
Other skills, from other repositories
ship
Commit and push the current work properly — lint, run the release gate, write a detailed commit message, push to GitHub. Use whenever work reaches a milestone or the user says ship it, commit, or push.
crawlkit
Maintain and release the crawlkit Go library, preserving downstream compatibility for gitcrawl, slacrawl, discrawl, and notcrawl.
weekly-delivery
Run the Tuesday delivery review for Stella — collect the week's merged PRs, reconcile them against the Feishu task table, create or refresh tasks, and report what shipped. Use when the user says "跑周报", "weekly delivery", "本周交付", "补飞书任务", or asks what merged in a given week.
cut-release
Decide whether unreleased develop work warrants a release, pick the version per semver.org, and cut it following this repo's established commit/PR/tag/release pattern.
ship-job
Ship a SciClaw software change through an isolated worktree, implementation, pruning, verification, commit, push, draft pull request, CI closeout, and independent review. Use when asked to ship a job, complete a change through PR, prepare a release candidate, or follow the repository's happy path toward Homebrew…
famclaw-dev
FamClaw test gates, coverage targets, and cross-compile/release steps. Use when running tests, checking coverage, or building/releasing famclaw.