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/fusedio/fused-render/making-a-releasenpx skills add fusedio/fused-render --skill making-a-releasegit clone --depth 1 https://github.com/fusedio/fused-renderWrote 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/fusedio/fused-render/making-a-release)<a href="https://agentmods.dev/skills/fusedio/fused-render/making-a-release"><img src="https://agentmods.dev/badge/skills/fusedio/fused-render/making-a-release.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.00058 | $0.01437 |
| Opus 5 | $0.00029 | $0.00718 |
| Sonnet 5 | $0.00012 | $0.00287 |
| Haiku 4.5 | $0.00006 | $0.00144 |
Grade A, and why
making-a-release 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 5d 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 — 115 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Making a Release
Overview
A release is: bump __version__, land that bump on main through a PR, then tag the merged commit vX.Y.Z and push the tag. Pushing the tag is what triggers .github/workflows/release.yml (build → sign → notarize → publish DMG + GitHub Release).
main is a protected branch. Direct pushes are rejected (GH006: Changes must be made through a pull request), so the bump PR is not optional — it is the only path. Do not try git push origin main first.
Single source of truth: the version lives ONLY in fused_render/__init__.py. pyproject.toml derives it dynamically ([tool.hatch.version]) — never edit a version into pyproject.toml.
The invariant that matters: the git tag name must equal __version__. Tag v0.3.5 ⟺ __version__ = "0.3.5". A mismatch ships the wrong version silently.
Steps
-
Start clean and on the latest
main. Always pull first — tagging a stale commit ships an old build. Use--ff-onlyso a diverged local branch errors out loudly instead of creating a merge commit:git switch main git pull --ff-only origin main # REQUIRED: get the latest before releasing git status --porcelainIf
git pull --ff-onlyfails, your localmainhas diverged — reconcile it before continuing. Ifgit status --porcelainprints anything, stop and resolve it first. -
Pick the new version. Read the current value and the latest tag; choose the next semver:
grep __version__ fused_render/__init__.py git tag --sort=-creatordate | head -1 -
Branch, then bump. Work on a branch from the start —
mainis protected:git switch -c bump-X.Y.ZBump
__version__infused_render/__init__.py(Edit tool). This is the only file to change. -
Commit (message matches the repo's history convention exactly):
git commit -am "Bump version to X.Y.Z" -
Open the bump PR and let it merge. Push the branch and open the PR with the
creating-pull-requestsskill (titleBump version to X.Y.Z), then enable auto-merge so it lands as soon as checks go green:git push -u origin HEAD gh pr create --title "Bump version to X.Y.Z" --body-file <body.md> gh pr merge <N> --squash --autoPoll until it actually reports
MERGED— do NOT tag before then:gh pr view <N> --json state,mergeStateStatus,mergeCommit
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.
- 5d ago First seen · 115 lines · 58 tokens per session scan A fa4406ebe455
making-a-release is a skill published in the GitHub repository fusedio/fused-render (11 stars, last pushed today), licensed MIT. It adds 58 tokens to every session and 1,437 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-08-30.
Other skills, from other repositories
agent-release-swarm
Agent skill for release-swarm - invoke with $agent-release-swarm.
release-announcement
Write a release announcement — changelog, blog post, in-app note, or social post — that leads with user impact, names the audience, and includes upgrade/migration steps without filler.
release
Cut a Symphony release by bumping the committed version, landing it, tagging the merged commit, and verifying the Burrito release workflow. Use when asked to release, tag, or retag Symphony.
changelog
Create changelog files for important commits in a PR.
multi-agent-release-manager
Cleans up the workspace, formats code, runs presubmit checks, and uploads CLs to Gerrit.
refresh-arm-sdk-release
WORKFLOW SKILL — Prepares Azure.ResourceManager SDK refresh pull requests in azure-sdk-for-net. WHEN: "prepare sdk refresh", "refresh Azure.ResourceManager package", "update ARM SDK from autorest tag", "refresh changelog dependencies". INVOKES: git and GitHub pull request tools for branch, commit, push, and PR…