release

release is a skill for Claude Code, Codex from mochow13/keen-agent. It costs 10 tokens per session (650 once invoked), scanned A, original, MIT.

A release checklist for publishing a new version of Keen Agent. It uses version numbers to distinguish breaking changes, new compatible features, and fixes.

In plain words
What is it for?
Reviewing commits and changelog entries, choosing a target version, checking the working tree, and preparing a release.
Why use it?
It helps determine whether a release is needed and reduces the chance of tagging the wrong version or overlooking unfinished changes.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/mochow13/keen-agent/release.svg)](https://agentmods.dev/skills/mochow13/keen-agent/release)
Your own site
<a href="https://agentmods.dev/skills/mochow13/keen-agent/release"><img src="https://agentmods.dev/badge/skills/mochow13/keen-agent/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 10 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 650 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.00010 $0.00650
Opus 5 $0.00005 $0.00325
Sonnet 5 $0.00002 $0.00130
Haiku 4.5 $0.00001 $0.00065

Measured 4d ago against content hash 1ae75506883d, 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 4d 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.

.agents/skills/release/SKILL.md · 63 lines

How it starts

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

Release Skill

Target version (optional): $ARGUMENTS

If no target version is provided, inspect the latest release tag and commits since that tag before making any changes. Suggest a semantic-version bump to the user and wait for confirmation:

  • major for intentional breaking changes.
  • minor for backward-compatible features.
  • patch for fixes, documentation, dependencies, and internal changes.

Use git tag --sort=-version:refname to identify the latest version tag and git log <latest-tag>..HEAD --oneline to review subsequent commits. If no release tags exist, treat the release as the initial v0.1.0 release and inspect the complete history. Also consider unreleased changelog entries. State the latest tag (or that no tag exists), the commits considered, the recommended version, and a concise rationale. If there are no commits since the latest tag, say that no release is recommended.

Once a version is supplied or confirmed, use it as the target version for the remaining steps.

Steps

  1. Verify the release state. Ensure the working tree is clean or explicitly identify any unrelated changes. Check whether the target tag already exists locally or on origin; never overwrite or move an existing tag.

  2. Bump the version. Update the version string, without the v prefix, in cmd/main.go.

  3. Update CHANGELOG.md.

    • Move all entries under [Unreleased] into a new [X.Y.Z] - YYYY-MM-DD section below it.
    • Add an empty [Unreleased] section at the top if one does not exist.
    • Check commit history for changes missing from the unreleased section.
    • Add or update the release link for vX.Y.Z.
  4. Validate the release.

    go mod tidy
    go test -race ./...
    
  5. Commit the release preparation. Stage only the release files and commit them:

    • cmd/main.go
    • CHANGELOG.md
  6. Push the release commit, then tag it.

    git push origin main
    git tag vX.Y.Z
    git push origin vX.Y.Z
    

    Pushing the tag triggers .github/workflows/release.yml.

Read the full file on GitHub · 63 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. 4d ago First seen · 63 lines · 10 tokens per session scan A 1ae75506883d

Subscribe to this mod's changes

release is a skill published in the GitHub repository mochow13/keen-agent (2 stars, last pushed 11d ago), licensed MIT. It adds 10 tokens to every session and 650 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

managing-github

Use when work reaches a GitHub-hosted issue, pull request or review, release, tag, or live deployment-branch boundary, including indirectly after investigation, completed development, or repository policy requires delivery. Also trigger when work discovers a repository defect that may need duplicate search or an issue…

rundesk-ai/rundesk-cli · 134 tokens

agent-framework-py-release

Use when cutting a Python release for the microsoft/agent-framework monorepo. Triggers on "bump py versions", "cut a python release", "prepare release PR for python", "release py packages", "bump python to X.Y.Z", or similar requests to bump Python package versions and prepare a release PR. Handles all four lifecycle…

microsoft/agent-framework · 103 tokens

tutti-app-release

Set up, review, run, or debug external repositories that publish a Tutti workspace app through the reusable Tutti App Release GitHub Actions workflow. Use for caller workflows, tutti.app.json manifests, @tutti-os/app-release-tools, S3/CloudFront release hosting, latest.json, versions.json, catalog.json, catalog-only…

tutti-os/tutti · 80 tokens

pinned-release-checklist

Minimal guidance-only Skill used by release-pinned compatibility examples.

AgentEra/Agently · 18 tokens

Release Checklist

Check release readiness and record a release note. Use for release and rollback requests.

AgentEra/Agently · 19 tokens

python-run

Run and debug Python scripts in the project. Use when the user says "run python", "execute this script", "debug this py file", or wants to run/modify a .py file. Handles dependency checks, linting, execution, and error analysis.

congchuanling-dot/Cohort · 56 tokens