Borrowing it
Nothing to install: this file belongs to Blushyes/reef. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/Blushyes/reef/main/.agents/skills/releasing-reef/SKILL.mdgit clone --depth 1 https://github.com/Blushyes/reefWrote 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/blushyes/reef/releasing-reef)<a href="https://agentmods.dev/skills/blushyes/reef/releasing-reef"><img src="https://agentmods.dev/badge/skills/blushyes/reef/releasing-reef/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/blushyes/reef/releasing-reef"><img src="https://agentmods.dev/badge/skills/blushyes/reef/releasing-reef.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00162 | $0.03007 |
| Opus 5 | $0.00081 | $0.01503 |
| Sonnet 5 | $0.00032 | $0.00601 |
| Haiku 4.5 | $0.00016 | $0.00301 |
Grade A, and why
releasing-reef 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.
How it starts
The opening of the file, as written. The whole thing — 210 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Releasing reef
Reef releases are driven by git tags matching v*. Pushing such a tag is the single trigger for .github/workflows/release.yml, which does the rest automatically: reef + reef-agent binaries for five targets, npm publish of @reef-tui/cli + five platform subpackages, GitHub Release with assets. You never run cargo publish, never npm publish by hand, never upload binaries manually. The contract is bump Cargo.toml, commit, tag, push.
What a v* tag push actually runs
.github/workflows/release.yml:
-
Build matrix — for each target, builds
reef-agentfirst, thenreef(cargo build --release --locked -p <crate>). reef-agent goes first becausereef-io's build script embeds the freshly-built agent as the upload-fallback blob. Targets:aarch64-apple-darwin,x86_64-apple-darwinx86_64-unknown-linux-gnu,aarch64-unknown-linux-gnu(viacross)x86_64-pc-windows-msvc
Each row uploads two artifacts:
reef-<platform>andreef-agent-<platform>. -
npm platform subpackages — publishes
@reef-tui/cli-{darwin-arm64,darwin-x64,linux-arm64,linux-x64,win32-x64}. Each subpackage bundles only thereefbinary (the agent is embedded inside it). Each subpackage'spackage.jsonversion is overwritten at publish time to${TAG#v}. -
npm main package — publishes
@reef-tui/cliwithoptionalDependenciespinned to the same version. -
GitHub Release — via
softprops/action-gh-release@v2:- Attaches ten archives —
reef-{darwin-arm64,darwin-x64,linux-arm64,linux-x64}.tar.gz+reef-win32-x64.zip, and the same set prefixedreef-agent-. The standalone agent archives are for users running it outside the upload-fallback path (e.g. preseeding it on a remote host). - Has
generate_release_notes: true— this appends auto-generated## What's Changednotes to whatever body the release already has; it does not overwrite a pre-existing body.
- Attaches ten archives —
Implications:
- The source
package.jsonversions (0.0.0) are placeholders — the tag is authoritative for npm. - Deleting a tag after push does not unpublish npm packages. You have a 72h unpublish window on npm; beyond that, cut a patch release.
NPM_TOKENrepo secret must be valid. Expired token → silent failure on npm steps while the GitHub Release still succeeds.
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.
- 10d ago First seen · 210 lines · 162 tokens per session scan A dad84d0c9807
releasing-reef is a skill published in the GitHub repository Blushyes/reef (81 stars, last pushed 15d ago), licensed Apache-2.0. It adds 162 tokens to every session and 3,007 once invoked, about $0.0008 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.
Other skills, from other repositories
release-jetbrains
Use when releasing the Kilo JetBrains plugin -- resolve a version ("next rc" or explicit), run the prepare workflow, edit and commit a filtered human-readable changelog on the release PR, then watch publish to completion.
finishing-a-development-branch
A process for finishing a completed development branch. A branch is a separate line of code changes that can later be merged or submitted as a pull request.
ship
Ship workflow: detect + merge base branch, run tests, review diff, bump VERSION, update CHANGELOG, commit, push, create PR. Use when asked to "ship", "deploy", "push to main", "create a PR", "merge and push", or "get it deployed". Proactively invoke this skill (do NOT push/PR directly) when the user says code is…
goal-issues-and-release
Clear the open issue backlog and then cut a release, in one autonomous run: use the batch-all-issues skill to resolve every open issue, then the goal-release skill to draft, merge, and see the release through publication. Never asks the user anything — every decision is made autonomously, and blockers are reported at…
goal-release
Cut a release end to end: use the draft-release skill to open the release PR and draft GitHub release, wait for CI to turn green, run the merge-pr skill to merge the release PR, then update the Homebrew formula from the published release assets. Use when the user wants to draft and merge a release in one go, or…
merge-pr
Merge a pull request using gh pr merge --admin.