git-release

git-release is a skill for Claude Code, Codex from znlgis/my-opencode-deepseek-config. It costs 63 tokens per session (1,068 once invoked), scanned A, original, MIT.

A release-preparation guide for turning merged code changes into a tagged software release. It uses Semantic Versioning, where major, minor, and patch numbers describe the scale of changes.

In plain words
What is it for?
It helps draft changelogs, choose a version increment, create Git tags, and prepare a GitHub release command.
Why use it?
It helps determine what changed since the previous tag and avoids manually assembling release notes, version bumps, and publishing commands.

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/znlgis/my-opencode-deepseek-config/git-release
Any agent
npx skills add znlgis/my-opencode-deepseek-config --skill git-release
Clone the repo
git clone --depth 1 https://github.com/znlgis/my-opencode-deepseek-config

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 git-release

README.md
[![agentmods](https://agentmods.dev/badge/skills/znlgis/my-opencode-deepseek-config/git-release.svg)](https://agentmods.dev/skills/znlgis/my-opencode-deepseek-config/git-release)
Your own site
<a href="https://agentmods.dev/skills/znlgis/my-opencode-deepseek-config/git-release"><img src="https://agentmods.dev/badge/skills/znlgis/my-opencode-deepseek-config/git-release.svg" alt="Measured on agentmods" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,068 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.00063 $0.01068
Opus 5 $0.00032 $0.00534
Sonnet 5 $0.00013 $0.00214
Haiku 4.5 $0.00006 $0.00107

Measured 5d ago against content hash c42fea1d6376, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

git-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.

opencode/skills/git-release/SKILL.md · 126 lines

How it starts

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

Git Release

Turn a set of merged changes into a clean, tagged release: collect what changed, pick the right version, and produce the exact commands to cut it. Pairs well with the gh-cli skill.

What I do

  • Draft release notes from the commits/PRs since the last tag.
  • Recommend a SemVer bump (major / minor / patch) from the change types.
  • Provide copy-pasteable git tag and gh release create commands.

When to use me

Use this when you are preparing a tagged release, drafting a changelog, or the user asks to "cut a release", "bump the version", or "publish a new version".

Step 1: Establish the baseline

git fetch --tags --force
git describe --tags --abbrev=0        # most recent tag, e.g. v1.3.0
git log <last-tag>..HEAD --oneline    # commits since that tag

If there is no prior tag, use the repository's first commit as the baseline (git log --oneline) and start at v0.1.0 (or v1.0.0 for a first stable release).

Step 2: Decide the version (SemVer)

Inspect the Conventional Commit types since the last tag and pick the highest applicable bump:

Found in the range Bump
any BREAKING CHANGE / ! marker major
any feat: minor
only fix: / perf: / refactor: / docs: / ... patch

MAJOR.MINOR.PATCH — incrementing major resets minor and patch to 0; incrementing minor resets patch to 0. Pre-1.0 projects may treat feat as patch and BREAKING CHANGE as minor — match the project's existing cadence.

Step 3: Draft the release notes

Group changes by type, newest first, and link PRs/issues:

## v1.4.0 — 2026-01-15

### Features
- add OAuth2 device-code login (#123)

### Fixes
- guard against null user before serializing (#130)

### Docs
- clarify skill auto-discovery paths (#128)

Prefer letting GitHub generate a first draft, then edit it:

Read the full file on GitHub · 126 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 · 126 lines · 63 tokens per session scan A c42fea1d6376

Subscribe to this mod's changes

git-release is a skill published in the GitHub repository znlgis/my-opencode-deepseek-config (57 stars, last pushed yesterday), licensed MIT. It adds 63 tokens to every session and 1,068 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.

Related

Other skills, from other repositories

release

Generic release assistant — analyzes repo release rules, caches them in .omc/RELEASERULE.md, then guides the release.

Yeachan-Heo/oh-my-claudecode · 27 tokens

release-plannotator

Prepare and execute a Plannotator release — draft release notes with full contributor credit, bump versions across all package files, build in dependency order, and kick off the tag-driven release pipeline. Use this skill whenever the user mentions preparing a release, bumping versions, writing release notes, tagging…

backnotprop/plannotator · 104 tokens

release

Use this skill for EVERY ClawRouter release. Enforces the full checklist — version sync, CHANGELOG, build, tests, npm publish, git tag, GitHub release. No step can be skipped.

BlockRunAI/ClawRouter · 44 tokens

prepare-release

Prepare a new release by collecting commits, generating bilingual release notes, updating version files, and creating a release branch. Use when asked to prepare/create a release, bump version, or run /prepare-release.

CherryHQ/cherry-studio · 44 tokens

release-notes

Use when asked to generate release notes, or when the /release-notes command runs — derive user-facing release notes from the change history since the last release.

ccch1mneyyy/dsh-TUI · 36 tokens

publish

Publish oh-my-opencode to npm by triggering the GitHub Actions publish workflow and verifying its artifacts. Ship-only: never runs pre-publish-review or re-reviews merged code unless the user explicitly asks. Argument: . Triggers: publish, release, deploy, npm publish.

code-yeongyu/oh-my-openagent · 68 tokens