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.
npx agentmods add skills/kaltinril/kernsmith/releasenpx skills add kaltinril/Kernsmith --skill releasegit clone --depth 1 https://github.com/kaltinril/KernsmithWrote 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.
[](https://agentmods.dev/skills/kaltinril/kernsmith/release)<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>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.
| Model | Per session | Once 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 |
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.
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 theIRasterizerCapabilitiesimplementations (src/KernSmith.Rasterizers.*/*Capabilities.csandFreeTypeRasterizer.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?
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.
- yesterday First seen · 158 lines · 84 tokens per session scan A 49743942ff77
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.
Other skills, from other repositories
update-changelog
Update the CHANGELOG.md files of C# projects. Parameters: csroot C# SDK repository root.
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…
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…
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…
create-release
Create a versioned GitHub release with changelog.
safe-github-push
GitHub無料リポジトリのサイズ制限を回避して安全にpushする。 大きなバイナリアセットを含むリポジトリでもpush失敗を防ぐ。 Use When: - GitHubにpushしたい - 大量のアセットやバイナリファイルをpushする必要がある - pushが「pack exceeds maximum allowed size」エラーで失敗した - リポジトリに大きなファイルが含まれている.