release

A release-management skill for preparing or checking a versioned software release. A release can include a changelog, updated package versions, a Git tag, and a GitHub release.

In plain words
What is it for?
It is for bumping versions, generating changelogs with git-cliff, creating or checking tags and GitHub releases, and verifying release conditions.
Why use it?
It organizes the steps between recent commits and a published release, while separating preparation and verification from actions that publish or change external services.

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

Made for: Claude Code, Codex.

Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,372 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.00040 $0.02372
Opus 5 $0.00020 $0.01186
Sonnet 5 $0.00008 $0.00474
Haiku 4.5 $0.00004 $0.00237

Measured yesterday against content hash 142bcf62a235, 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 yesterday.

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.

skills/release/SKILL.md · 137 lines

How it starts

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

Release Process

Turn the Conventional Commits since the last tag into a versioned release: a bumped CHANGELOG.md, package manifest updates, an annotated git tag, and a GitHub release. Uses git-cliff (config: dot_config/git-cliff/cliff.toml, deployed to ~/.config/git-cliff/cliff.toml).

Authority Boundaries

  • Preparing or reviewing a release does not authorize a commit, tag, push, GitHub release, asset upload, package or image publication, deployment, or announcement. Confirm each requested external mutation before performing it.
  • Verification is read-only apart from downloading public assets into a disposable directory. It never creates or edits a release, moves a tag, replaces an asset, rebuilds an artifact, or resigns it.
  • If a repository workflow owns release creation, let the pushed tag trigger that workflow and verify its result; do not race it with gh release create.

Publication Preconditions

  • Clean working tree on the default branch (main), synced with origin.
  • History follows conventional-commit — git-cliff groups commits by type and skips chore(release)/chore(deps).
  • The repository's full gate passes on the release tree, normally mise run all. Before running it, inspect the full gate's task definition and working-tree state. If it invokes whole-tree write-formatters or the tree contains unrelated changes, use an isolated temporary worktree; never reformat unrelated work.
  • The proposed tag is absent locally and remotely. Stop if either copy exists; never move a published tag.

Workflow

  1. Compute the next version from the commit types since the last tag (feat → minor, fix/others → patch, !/BREAKING CHANGE → major):

    # Resolves the local/global cliff.toml configuration
    git-cliff --bumped-version
    
    # Or explicitly reference the global config if a local one is not present:
    git-cliff --config ~/.config/git-cliff/cliff.toml --bumped-version
    
  2. Update package manifests (if the project doesn't use dynamic/VCS-based versioning) to match the computed version (e.g., vX.Y.Z or X.Y.Z):

    • Python: Bump version in pyproject.toml (unless using dynamic versioning via hatch-vcs or similar).
    • Node.js: Run npm version --no-git-tag-version X.Y.Z or update package.json.
    • Go / OpenTofu: Versioned via git tags (no file changes needed).
  3. Generate the changelog for that version (pass --config to be explicit):

    git-cliff --config ~/.config/git-cliff/cliff.toml --bump -o CHANGELOG.md
    
  4. Commit the changelog and manifest changes with a release commit (excluded from the changelog by design):

    git add CHANGELOG.md
    # plus the manifest you bumped in step 2, if any (Python: pyproject.toml · Node: package.json · Go/OpenTofu: none)
    git commit -m "chore(release): vX.Y.Z"
    
  5. Record, tag, and push the exact release commit after the authorized release commit:

    tag=vX.Y.Z
    release_sha=$(git rev-parse HEAD)
    git tag -a "$tag" -m "$tag" "$release_sha"
    git push --atomic origin main "refs/tags/$tag"
    
  6. Publish the GitHub release using only the latest section as notes (write to a temp file to stay shell-agnostic):

    release_tmp=$(mktemp -d)
    git-cliff --config ~/.config/git-cliff/cliff.toml --latest --strip all > "$release_tmp/release-notes.md"
    gh release create "$tag" --verify-tag --title "$tag" --notes-file "$release_tmp/release-notes.md"
    
  7. Print the release URL and the resolved version.

Read the full file on GitHub · 137 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. yesterday First seen · 137 lines · 40 tokens per session scan A 142bcf62a235

Subscribe to this mod's changes

release is a skill published in the GitHub repository fmind/dotfiles (4 stars, last pushed 2d ago), licensed MIT. It adds 40 tokens to every session and 2,372 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.

Related

Other skills, from other repositories

dotfiles-bootstrap

Bootstrap a workstation with the dotfiles framework. Takes a GitHub user / owner+repo / explicit clone URL and runs dot init (which shells out to chezmoi) with the right safety prompts. Honors the active agent profile (ask / plan / apply / audit) so it defaults to dry-run in safer modes and full apply in apply.

sebastienrousseau/dotfiles · 88 tokens

vibe

Delegate a coding task to a cheap AI model (Mistral Vibe by default, but any provider Vibe knows about — DeepSeek, Gemini Flash, etc.) and supervise the result via git diff. Claude orchestrates, the cheap model codes. Claude consumes 500-1500 tokens per delegation regardless of how many file reads the delegate does…

sebastienrousseau/dotfiles · 137 tokens

aiq-research

Use when asked to run deep research or AI-Q research through a reachable NVIDIA AI-Q Blueprint backend.

laurigates/dotfiles · 25 tokens

obsidian-bases

Obsidian Bases database feature for YAML-based interactive note views. Use when creating .base files, writing filter queries, building formulas, configuring table/card views, or working with Obsidian properties and frontmatter databases.

laurigates/dotfiles · 49 tokens

telegram

Send notifications, interactive questions, or multiple-choice polls to the user via Telegram. Use when the user asks to be notified ("ping me", "notify me on Telegram", "ask me when..."), when a long-running task finishes and the user is likely away, when an irreversible action needs out-of-band confirmation, or when…

laurigates/dotfiles · 117 tokens

chezmoi-expert

Comprehensive chezmoi dotfiles management expertise including templates, cross-platform configuration, file naming conventions, and troubleshooting. Covers source directory management, reproducible environment setup, and chezmoi templating with Go templates. Use when user mentions chezmoi, dotfiles, cross-platform…

laurigates/dotfiles · 88 tokens