release

release is a skill for Claude Code from ianchesal/tmux-scout-golang. It costs 48 tokens per session (624 once invoked), scanned A, original, MIT.

A release procedure for the tmux-scout-golang project. A release is a published project version, usually marked with a version number and tag.

In plain words
What is it for?
Use it when bumping the project's patch, minor, or major version, creating a release branch and pull request, pushing it, and completing the tag phase.
Why use it?
It reduces mistakes when choosing a version, updating the version file, creating the required pull request, and tagging the release.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: names the AskUserQuestion tool.

Good fit Use it when bumping the project's patch, minor, or major version, creating a release branch and pull request, pushing it, and completing the tag phase.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ianchesal/tmux-scout-golang/release
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 ianchesal/tmux-scout-golang --skill release
Clone the repo
git clone --depth 1 https://github.com/ianchesal/tmux-scout-golang

Made for: Claude Code.

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 release

README.md
[![agentmods](https://agentmods.dev/badge/skills/ianchesal/tmux-scout-golang/release/github.svg)](https://agentmods.dev/skills/ianchesal/tmux-scout-golang/release)
Your own site
<a href="https://agentmods.dev/skills/ianchesal/tmux-scout-golang/release"><img src="https://agentmods.dev/badge/skills/ianchesal/tmux-scout-golang/release/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 release

Your own site · 80×15
<a href="https://agentmods.dev/skills/ianchesal/tmux-scout-golang/release"><img src="https://agentmods.dev/badge/skills/ianchesal/tmux-scout-golang/release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 624 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.00048 $0.00624
Opus 5 $0.00024 $0.00312
Sonnet 5 $0.00010 $0.00125
Haiku 4.5 $0.00005 $0.00062

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

Security

Grade A, and why

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 11d 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.

.claude/skills/release/SKILL.md · 55 lines

How it starts

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

Release Skill for tmux-scout-golang

This skill guides you through creating a new release of tmux-scout-golang. The release process requires a PR (main is branch-protected), so it has two phases: the PR phase and the tag phase.

Step 1: Determine the new version

Read the current version:

cat .version

Parse the version (format: vMAJOR.MINOR.PATCH) and compute the three candidates:

  • patch: increment PATCH (e.g. v0.4.2 → v0.4.3)
  • minor: increment MINOR, reset PATCH to 0 (e.g. v0.4.2 → v0.5.0)
  • major: increment MAJOR, reset MINOR and PATCH to 0 (e.g. v0.4.2 → v1.0.0)

Present the options to the user using AskUserQuestion with three choices showing the computed version number for each type. Wait for their selection before proceeding.

Step 2: Create the release branch and PR

Once the user picks a version type:

  1. Create a branch: git checkout -b release/<new-version>
  2. Update .version with the new version string (no trailing newline issues — write exactly vMAJOR.MINOR.PATCH)
  3. Stage and commit: git add .version && git commit -m "chore: bump version to <new-version>"
  4. Push: git push -u origin release/<new-version>
  5. Open a PR with gh pr create:
    • Title: chore: bump version to <new-version>
    • Body should mention that after merge the user should confirm so the tag can be created

Step 3: Wait for merge, then tag

After creating the PR, tell the user:

"PR is open at . Merge it and let me know when it's done — I'll then pull main and run make tag to create the <new-version> tag and trigger the GitHub release."

When the user confirms the PR is merged:

  1. git checkout main && git pull
  2. make tag

make tag handles everything: verifies the working tree is clean, runs tests, creates the tag, and pushes it to trigger the GitHub Actions release workflow.

Notes

  • Never push commits directly to main — branch protection is enforced on the remote.
  • The make tag command is authoritative for release preconditions; if it fails, read its error output and fix the issue before retrying.
  • Version format is always vMAJOR.MINOR.PATCH with a lowercase v prefix.

Read the full file on GitHub · 55 lines

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. 11d ago First seen · 55 lines · 48 tokens per session scan A edd15f725e65

Subscribe to this mod's changes

release is a skill published in the GitHub repository ianchesal/tmux-scout-golang (6 stars, last pushed 2d ago), licensed MIT. It adds 48 tokens to every session and 624 once invoked, about $0.0002 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.