release

release is a skill for Claude Code, Codex from suxrobGM/jobpilot. It costs 26 tokens per session (790 once invoked), scanned A, original, MIT.

A release procedure for JobPilot that updates the shared version in the host and plugin, records the changes, and creates a version tag. A version tag marks a specific release in source control.

In plain words
What is it for?
Use it to create a major, minor, or patch release, update the required version files, add changelog entries, commit the release, and tag it.
Why use it?
It prevents the host and plugin from receiving mismatched versions and ensures the changelog and release trigger are updated together.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/suxrobgm/jobpilot/release
Any agent
npx skills add suxrobGM/jobpilot --skill release
Clone the repo
git clone --depth 1 https://github.com/suxrobGM/jobpilot

Made for: Claude Code, Codex.

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/suxrobgm/jobpilot/release.svg)](https://agentmods.dev/skills/suxrobgm/jobpilot/release)
Your own site
<a href="https://agentmods.dev/skills/suxrobgm/jobpilot/release"><img src="https://agentmods.dev/badge/skills/suxrobgm/jobpilot/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 790 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00026 $0.00790
Opus 5 $0.00013 $0.00395
Sonnet 5 $0.00005 $0.00158
Haiku 4.5 $0.00003 $0.00079

Measured 5d ago against content hash 2bf6d6b8ba98, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, 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 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.

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

How it starts

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

Release Skill

Cut a new JobPilot release. Host and plugin share one version and ship from one tag (vX.Y.Z), which triggers .github/workflows/release.yml - it builds the terminal binaries for all RIDs, publishes the GitHub Release (the terminal archives, which bundle the plugin tree), and syncs the plugin tree into the claude-plugins and codex-plugins marketplaces.

Usage

The user provides a version (e.g. 2.1.0) or a bump type (major, minor, patch). With no argument, default to a patch bump.

Context

  • Version source of truth (must stay in lockstep):
    • apps/terminal/JobPilot.Terminal.csproj - the <Version> element
    • plugin/.claude-plugin/plugin.json - "version"
    • plugin/.codex-plugin/plugin.json - "version"
    • package.json - "version"
  • Tag format: vX.Y.Z (matches the v* trigger in release.yml).
  • Changelog: CHANGELOG.md at the repo root, Keep a Changelog format, newest release first. The workflow also sets generate_release_notes: true for the GitHub Release.

Steps

  1. Determine the new version:

    • Read the current version from all four files above.
    • If they differ, report the mismatch and reconcile to the highest before bumping.
    • Use the user's explicit version, else compute from the bump type, else bump patch.
    • Verify the new version is strictly greater than the current highest.
  2. Pre-flight checks (stop and report on any failure - do not paper over):

    • Working tree is clean (git status).
    • Current branch is main (or ask if on another branch).
    • No existing tag vX.Y.Z (git tag -l).
  3. Bump version: set the new version in all four files.

  4. Update CHANGELOG.md (create it with a # Changelog header if missing):

    • List commits since the previous tag: git log <prev-tag>..HEAD --oneline (all commits if no tag exists).
    • Prepend a ## vX.Y.Z - YYYY-MM-DD section, grouping the changes under ### Added / ### Changed / ### Fixed as applicable. Summarize user-facing changes in plain language; fold internal chores/refactors into one line or omit them.
    • Skip merge commits and the release commit itself.

Read the full file on GitHub · 70 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. 5d ago First seen · 70 lines · 26 tokens per session scan A 2bf6d6b8ba98

Subscribe to this mod's changes

release is a skill published in the GitHub repository suxrobGM/jobpilot (65 stars, last pushed 5d ago), licensed MIT. It adds 26 tokens to every session and 790 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

release

CONTRIBUTOR TOOL - Cut a plugin release: bump plugin.json version, finalize CHANGELOG, update README if needed, gate on make ci, commit, tag vX.Y.Z, and create the GitHub release. Use when shipping a new plugin version. NOT distributed.

oliver-kriska/claude-elixir-phoenix · 60 tokens

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"…

hyhmrright/brooks-lint · 135 tokens

new

Use when user asks to create a release, cut a release, or publish a version. Auto-detects GitHub vs GitLab vs Gitea, calculates semantic version, generates release notes from PRs/MRs or commits, shows preview for confirmation before publishing.

umputun/cc-thingz · 56 tokens

push-ci

Push to remote and monitor CI. Validates branch safety, executes git push WITH explicit user approval, then monitors CI run status via gh CLI. Use when: user says 'push', 'push and watch CI', 'ship it', 'push-ci'. Not for: committing (use /smart-commit), creating PRs (use /create-pr), merging (use /merge-prep).

sd0xdev/sd0x-harness · 82 tokens

ops-release

OPS on-demand: This skill should be used when the user asks to "release the plugin", "publish ops…

Lifecycle-Innovations-Limited/claude-ops · 26 tokens

bump-version

Bump package and plugin version in sync. Updates package.json, .claude-plugin/plugin.json, and install-state manifest to the same version. Use when: user says 'bump version', 'update version', '更新版本', '版本 +1', or /bump-version.

sd0xdev/sd0x-harness · 61 tokens