release

release is a skill for Claude Code from kaltinril/Kernsmith. It costs 84 tokens per session (1,539 once invoked), scanned A, original, MIT.

A release checklist for the KernSmith project. A software release is a prepared version of the project, including its version number, changelog, code changes, and publication steps.

In plain words
What is it for?
Use it to verify a clean working tree, bump the version, update release documents, create and merge the pull request, and remember publication.
Why use it?
It makes the release process repeatable and prevents missed checks, documentation updates, or repository steps.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions Claude Code.

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

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/kaltinril/kernsmith/release.svg)](https://agentmods.dev/skills/kaltinril/kernsmith/release)
Your own site
<a href="https://agentmods.dev/skills/kaltinril/kernsmith/release"><img src="https://agentmods.dev/badge/skills/kaltinril/kernsmith/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,539 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.1 $0.00084 $0.01539
Opus 5 $0.00042 $0.00770
Sonnet 5 $0.00017 $0.00308
Haiku 4.5 $0.00008 $0.00154

Measured yesterday against content hash 49743942ff77, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, 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.

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

How it starts

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

Release

Automate the full KernSmith release workflow from version bump through PR merge.

Important

Run all git commands directly (e.g., git status) without prefixing cd <path> &&. The Bash tool already runs in the project's working directory, and the cd prefix breaks permission allow-list matching on Bash(git *).

Input

$ARGUMENTS should be the version number (e.g., 0.10.4). If not provided, read the current version from Directory.Build.props and ask the user what the new version should be.

Steps

1. Validate and prepare

# Get current version for reference
grep '<Version>' Directory.Build.props
# Make sure we're starting clean
git status

If there are uncommitted changes, warn the user and stop — don't proceed with dirty working tree.

2. Branch from latest main

git checkout main
git pull
git checkout -b version/<version>

3. Bump version

Edit Directory.Build.props — change <Version>X.Y.Z</Version> to the new version. This is the single source of truth; all projects inherit it.

4. Update CHANGELOG.md

Move everything under ## [Unreleased] into a new version section. The result should look like:

## [Unreleased]

## [<version>] - <today's date YYYY-MM-DD>

### Added
- (entries that were under Unreleased)

### Fixed
- (entries that were under Unreleased)

If [Unreleased] is empty, add a single entry: - Version bump and documentation updates

5. Update RELEASING.md

Update any version number examples in RELEASING.md to use the new version (e.g., command-line examples, tag examples). These are illustrative — keep them current so the doc stays useful.

6. Documentation audit

Spawn an Explore agent to check whether all documentation layers are consistent with the current codebase. The agent should check:

  • XML doc comments: Do all public methods/types added since the last release have <summary> tags?
  • Root README.md: Does the features list reflect current capabilities?
  • Feature comparison (COMPARISON.md): Do the KernSmith feature columns and — especially — the rasterizer backend capability table match the code? Verify every backend claim (color fonts, variable fonts, SDF, outline stroke, synthetic bold/italic, anti-aliasing modes, system fonts) against the IRasterizerCapabilities implementations (src/KernSmith.Rasterizers.*/*Capabilities.cs and FreeTypeRasterizer.cs) — do NOT assume; these tables have drifted from the code before (e.g. color/variable-font rows were once inverted between FreeType and DirectWrite). Also check the two capability tables agree with each other.
  • CLI README (tools/KernSmith.Cli/README.md): Are all CLI commands and flags documented?
  • UI README (apps/KernSmith.Ui/README.md): Does the feature list match current UI?
  • DocFX docs (docs/): Are doc pages consistent with the code?
  • Reference docs (reference/): Any stale references?
  • NuGet descriptions: Do .csproj <Description> fields reflect current package capabilities?

Read the full file on GitHub · 158 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 · 158 lines · 84 tokens per session scan A 49743942ff77

Subscribe to this mod's changes

release is a skill published in the GitHub repository kaltinril/Kernsmith (9 stars, last pushed 8d ago), licensed MIT. It adds 84 tokens to every session and 1,539 once invoked, about $0.0004 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-09-04.

Related

Other skills, from other repositories

update-changelog

Update the CHANGELOG.md files of C# projects. Parameters: csroot C# SDK repository root.

Azure/azure-sdk-for-net · 25 tokens

azsdk-common-prepare-release-plan

Create, get, update, abandon, and link SDK PRs to release plan work items for Azure SDK releases. UTILITY SKILL. USE FOR: "create release plan", "get release plan", "update release plan", "update API spec in release plan", "update SDK details in release plan", "abandon release plan", "link SDK PR to plan", "namespace…

Azure/azure-sdk-for-net · 231 tokens

refresh-arm-sdk-release

WORKFLOW SKILL — Prepares Azure.ResourceManager SDK refresh pull requests in azure-sdk-for-net. WHEN: "prepare sdk refresh", "refresh Azure.ResourceManager package", "update ARM SDK from autorest tag", "refresh changelog dependencies". INVOKES: git and GitHub pull request tools for branch, commit, push, and PR…

Azure/azure-sdk-for-net · 91 tokens

azsdk-common-sdk-release

Check release readiness and trigger the release pipeline for Azure SDK packages. UTILITY SKILL. USE FOR: "release SDK", "trigger release", "check release readiness", "release pipeline", "publish package", "ship SDK". DO NOT USE FOR: SDK development, code generation, pipeline debugging, release plan creation. INVOKES…

Azure/azure-sdk-for-net · 85 tokens

create-release

Create a versioned GitHub release with changelog.

fpindej/netrock · 10 tokens

safe-github-push

GitHub無料リポジトリのサイズ制限を回避して安全にpushする。 大きなバイナリアセットを含むリポジトリでもpush失敗を防ぐ。 Use When: - GitHubにpushしたい - 大量のアセットやバイナリファイルをpushする必要がある - pushが「pack exceeds maximum allowed size」エラーで失敗した - リポジトリに大きなファイルが含まれている.

moorestech/moorestech · 114 tokens