agr-release

agr-release is a skill for Claude Code, Codex from computerlovetech/agr. It costs 91 tokens per session (1,669 once invoked), scanned A, original, MIT.

A release checklist for the agr Python package. It covers choosing a version change, updating the changelog, running checks, creating a Git tag, and monitoring the automated PyPI publishing process.

In plain words
What is it for?
Use it when bumping the version, preparing a PyPI release, publishing a beta, creating a GitHub Release, or checking the GitHub Actions job that publishes the package.
Why use it?
It makes sure the repository is ready before a tag starts the release workflow. It also separates patch, minor, major, and beta releases according to the type of change.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/computerlovetech/agr/agr-release.svg)](https://agentmods.dev/skills/computerlovetech/agr/agr-release)
Your own site
<a href="https://agentmods.dev/skills/computerlovetech/agr/agr-release"><img src="https://agentmods.dev/badge/skills/computerlovetech/agr/agr-release.svg" alt="Measured on agentmods" height="20"></a>
Per session 91 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,669 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.00091 $0.01669
Opus 5 $0.00046 $0.00834
Sonnet 5 $0.00018 $0.00334
Haiku 4.5 $0.00009 $0.00167

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

Security

Grade A, and why

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

skills/agr-release/SKILL.md · 188 lines

How it starts

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

agr Release Process

This skill walks through the full release process for the agr package. The release is tag-driven: pushing a vX.Y.Z tag triggers the GitHub Actions pipeline that runs quality checks, builds the package, publishes to PyPI, and creates a GitHub Release.

Your job is to prepare everything so that when the tag is pushed, the pipeline succeeds on the first try.

Before you start

Verify the preconditions. If any fail, stop and tell the user.

  1. Clean working treegit status should show no uncommitted changes
  2. On the main branch — releases should only come from main
  3. Up to date with remotegit pull to make sure you're not behind

Ask the user what kind of release this is:

  • patch (0.7.10 → 0.7.11) — bug fixes, small changes
  • minor (0.7.10 → 0.8.0) — new features, backwards-compatible
  • major (0.7.10 → 1.0.0) — breaking changes
  • beta (0.7.11b1) — pre-release for testing

If the user already said what type they want, don't ask again.

Step 1: Figure out what changed

Before touching any files, understand what's being released.

# See all commits since the last release tag
git log $(git describe --tags --abbrev=0)..HEAD --oneline

Also check the [Unreleased] section in CHANGELOG.md — it may already have entries. Cross-reference with the git log to make sure nothing is missing. If there are commits that aren't reflected in the changelog, add them.

Group changes into the standard Keep a Changelog categories:

  • Added — new features
  • Changed — changes to existing functionality
  • Fixed — bug fixes
  • Removed — removed features
  • Docs — documentation-only changes

Step 2: Run quality checks

Run all three locally before proceeding. These are the same checks the CI pipeline runs, so catching failures here saves a round-trip.

uv run ruff check .
uv run ruff format --check .
uv run pytest -m "not e2e and not network and not slow"
uv run ty check

If anything fails, fix it before continuing. The release commit should pass CI cleanly.

Read the full file on GitHub · 188 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 · 188 lines · 91 tokens per session scan A ff6e36c882aa

Subscribe to this mod's changes

agr-release is a skill published in the GitHub repository computerlovetech/agr (454 stars, last pushed 22d ago), licensed MIT. It adds 91 tokens to every session and 1,669 once invoked, about $0.0005 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

Unified release for both Android and iOS from a single version tag. Runs quality gates, bumps both platform versions in one commit, tags, builds both platforms, uploads Android to Play Store, and opens iOS archive for App Store upload. Use when the user asks to release, ship, cut a release, or make a new version.

baijum/ukulele-companion · 70 tokens

android-release

Build and upload an Android release based on an existing git tag. Runs lint and all tests first (unit and instrumented), bumps version to match the tag, builds release AAB and APK (without debug info), commits the version bump, and uploads the AAB to Google Play Store internal testing. Use when the user asks to make…

baijum/ukulele-companion · 85 tokens

ios-release

Build an iOS release based on an existing git tag. Bumps version to match the tag, builds the shared KMP framework and the iOS app archive. Use when the user asks to make an iOS release, build for App Store, or create an iOS archive.

baijum/ukulele-companion · 60 tokens

play-store-promote-public

Promote a release to Google Play open testing or production tracks. Supports full rollout and staged rollout to production. Use when the user asks to promote to open testing, beta, go to production, release to all users, staged rollout, or increase rollout percentage.

baijum/ukulele-companion · 58 tokens

ios-appstore-publish

Publish the iOS app to Apple's App Store. Covers the full workflow from code signing setup through archive, upload, metadata, and submission. Use when the user asks to publish to App Store, submit for review, upload to App Store Connect, or distribute the iOS app.

baijum/ukulele-companion · 62 tokens

github-release

Create a GitHub release with a version tag and auto-generated release notes. Does not build artifacts or upload to any store. Use when the user asks to tag a version, create a GitHub release, cut a release, or prepare release notes.

baijum/ukulele-companion · 53 tokens