release-management

release-management is a skill for Claude Code, Codex from saidsef/mcp-github-pr-issue-analyser. It costs 22 tokens per session (2,381 once invoked), scanned A, original, Apache-2.0.

A release-publishing workflow for GitHub repositories. A GitHub release is a versioned publication of a project, usually linked to a commit tag.

In plain words
What is it for?
Use it to create semantic-version tags, publish releases, update release details, or remove a release and optionally its tag.
Why use it?
It keeps tagging, publishing, correcting, and withdrawing releases in one controlled process.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create semantic-version tags, publish releases, update release details, or remove a release and optionally its tag.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/saidsef/mcp-github-pr-issue-analyser/release-management
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 saidsef/mcp-github-pr-issue-analyser --skill release-management
Clone the repo
git clone --depth 1 https://github.com/saidsef/mcp-github-pr-issue-analyser

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-management

README.md
[![agentmods](https://agentmods.dev/badge/skills/saidsef/mcp-github-pr-issue-analyser/release-management.svg)](https://agentmods.dev/skills/saidsef/mcp-github-pr-issue-analyser/release-management)
Your own site
<a href="https://agentmods.dev/skills/saidsef/mcp-github-pr-issue-analyser/release-management"><img src="https://agentmods.dev/badge/skills/saidsef/mcp-github-pr-issue-analyser/release-management.svg" alt="Measured on agentmods" height="20"></a>
Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,381 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00022 $0.02381
Opus 5 $0.00011 $0.01190
Sonnet 5 $0.00004 $0.00476
Haiku 4.5 $0.00002 $0.00238

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

Security

Grade A, and why

release-management 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 7d 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.

src/mcp_github/skills/release-management/SKILL.md · 229 lines

How it starts

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

Release Management

Create a tag on the default branch and publish a GitHub release against it, then read, correct or withdraw what has already been published.

Prerequisites

  • repo_owner and repo_name for the target repository
  • The default branch must be releasable: CI passing, every intended PR merged
  • GitHub token with contents: write access

Workflow

Publishing

  1. Check the target - call get_latest_sha to see which commit will be tagged
  2. Check what is already out - call get_release with no tag for the current latest, or list_releases for the history
  3. Create the tag - call create_tag with a semantic version string
  4. Publish the release - call create_release against that tag

Correcting a release

  1. Call update_release with only the fields that are wrong
  2. Publishing again over the same tag also works: create_release updates a tag that already has a release rather than failing

Withdrawing a release

  1. Call delete_release, which leaves the tag in place
  2. Pass delete_tag=True only when the tag itself was a mistake
  3. Deleting a published release breaks any link to it. Ask the user in chat and get an explicit yes first

Tool Parameters

get_latest_sha

Parameter Type Description
repo_owner str GitHub organisation or username
repo_name str Repository name

Returns the SHA of the newest commit on the default branch, or None if the repository has no commits.

create_tag

Parameter Type Description
repo_owner str GitHub organisation or username
repo_name str Repository name
tag_name str Tag name, e.g. v1.2.3
message str Tag message. Omit for a lightweight tag
sha str Commit to tag. Omit to tag the newest commit on the default branch

Pass sha to cut a release from a known commit. Without it the tool resolves the default branch HEAD itself, and what that points at can change between reading it and tagging it.

Read the full file on GitHub · 229 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. 7d ago First seen · 229 lines · 22 tokens per session scan A 3b0edb55ec49

Subscribe to this mod's changes

release-management is a skill published in the GitHub repository saidsef/mcp-github-pr-issue-analyser (6 stars, last pushed yesterday), licensed Apache-2.0. It adds 22 tokens to every session and 2,381 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-31.

Related

Other skills, from other repositories

polish-docs-meta

Finalize documentation and project metadata for a ship-ready release. Use after implementation is complete, tests pass, and devcheck is clean. Safe to run at any stage — each step checks current state and only acts on what still needs work.

cyanheads/git-mcp-server · 53 tokens

ios-app-store-submit

Build, sign, and submit a Flutter/iOS app to the App Store Connect — covers Xcode archive/export, code signing (including headless-Mac keychain workarounds), the asc CLI for App Store Connect metadata automation, screenshot handoff, and final review submission. Use when asked to build and upload an iOS app, set up App…

ZestfulPulse/ios-app-store-submit · 143 tokens

release-versioning

Discipline for release classification, version bumps, and changelogs, Conventional Commits classify the release range, SemVer computes the version from those commits, Keep a Changelog renders the result. Use when the user asks to cut a release, bump a version, write a changelog, decide if a change is a…

aethrox/doctrine · 84 tokens

publish-github-release

Use this whenever the user asks to ship, publish, release, tag, or cut a new version of the project — OR when CHANGELOG.md has an "Unreleased" / in-progress section ready to be shipped. The skill bumps the version across all version-bearing files, regenerates the CHANGELOG entry from git log since the last tag…

iampantherr/SecureContext · 99 tokens

release

Cut a new release: group Conventional Commits since the last tag, append a CHANGELOG section, create a release commit, and add an annotated git tag. TRIGGER when the user says "cut a release", "tag a release", "release v1.2.0", "ship version 1.2.0", "create a release for 1.2.0", "bump the version to 1.2.0", "make a…

thettwe/nyann · 207 tokens

gh-pr-release

Operate GitHub pull requests and releases with gh CLI: create/draft PRs, publish confirmed reviews, merge safely, reply/resolve threads, apply selected feedback, fix PR checks, prepare release PRs with version bumps/changelogs, tag merged commits, publish GitHub Releases with verified assets, and diagnose release…

bahayonghang/my-ai-cli-toolkit · 175 tokens