clippy-pet: Skill for Claude Code

.agents/skills/release/SKILL.md

release is a skill for Claude Code, Codex from adammatthewsteinberger/clippy-pet. It costs 51 tokens per session (921 once invoked), scanned A, original, MIT.

A release procedure for Clippy Pet that checks the project before creating a version tag for an automated release.

In plain words
What is it for?
Use it to prepare a release, check matching version information, verify the changelog and commit, and create a release tag when the required conditions are met.
Why use it?
It helps prevent releases when the main branch, version files, or changelog are not ready. The actual build and publishing are handled by continuous integration after the tag is pushed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md.

This is adammatthewsteinberger/clippy-pet's own configuration. It tells Claude Code and Codex how to work on clippy-pet itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything clippy-pet configures →

Reuse

Borrowing it

Nothing to install: this file belongs to adammatthewsteinberger/clippy-pet. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/adammatthewsteinberger/clippy-pet/develop/.agents/skills/release/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/adammatthewsteinberger/clippy-pet

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/adammatthewsteinberger/clippy-pet/release/github.svg)](https://agentmods.dev/skills/adammatthewsteinberger/clippy-pet/release)
Your own site
<a href="https://agentmods.dev/skills/adammatthewsteinberger/clippy-pet/release"><img src="https://agentmods.dev/badge/skills/adammatthewsteinberger/clippy-pet/release/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for release

Your own site · 80×15
<a href="https://agentmods.dev/skills/adammatthewsteinberger/clippy-pet/release"><img src="https://agentmods.dev/badge/skills/adammatthewsteinberger/clippy-pet/release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 921 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00051 $0.00921
Opus 5 $0.00026 $0.00461
Sonnet 5 $0.00010 $0.00184
Haiku 4.5 $0.00005 $0.00092

Measured 8d ago against content hash a359250897c0, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, 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 8d 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 · 57 lines

How it starts

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

Release

Releases are built entirely by CI once a v* tag lands on main — this skill's job is to get main into a state the release workflow's guard job will accept, then tag it. Pushing the tag is public and effectively irreversible (it builds real installers and publishes a real GitHub Release), so always confirm with the user before pushing the tag, even in an otherwise autonomous session.

1. Establish the target commit

git fetch origin
git log origin/main --oneline -5
git tag -l --sort=-v:refname | head -5   # confirm the intended tag doesn't already exist

The release must be tagged on a commit that is an ancestor of origin/main (normally origin/main's current HEAD itself).

2. Check whether main is release-ready

At the target commit, these three must all read the same version string (no v prefix), and it must be the version being released:

  • VERSION — bare version, e.g. 1.1.0
  • CHANGELOG.md — the top entry must be ## [x.y.z] - YYYY-MM-DD (a real date, not ## [Unreleased])
  • CITATION.cff — the version: field

This is exactly what release.yml's guard job checks; check it yourself first so a failure doesn't burn a CI run:

cat VERSION
sed -n 's/^## \[\([0-9][^]]*\)\].*/\1/p' CHANGELOG.md | head -n1
sed -n 's/^version: //p' CITATION.cff

If they don't already agree — e.g. there's unreleased content sitting under ## [Unreleased] in CHANGELOG.md that needs to ship — prepare a release commit:

  1. Rename ## [Unreleased] to ## [x.y.z] - YYYY-MM-DD (today's date) in CHANGELOG.md, leaving a fresh empty ## [Unreleased] above it.
  2. Update the compare-link footer at the bottom of CHANGELOG.md (the [Unreleased]: .../compare/vX...HEAD and [x.y.z]: .../compare/... lines).
  3. Bump VERSION to x.y.z.
  4. Bump version: in CITATION.cff to x.y.z (and date-released: if the project keeps that current).
  5. Run python3 scripts/validate.py to make sure nothing else is broken.
  6. Commit, and get this onto main through the project's normal flow — either it's already on develop and gets merged via a release/x.y.z branch per AGENTS.md's branching model, or, for a hotfix, branch hotfix/<description> from main directly. Do not push straight to main without going through review unless the user explicitly directs otherwise.

Read the full file on GitHub · 57 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. 8d ago First seen · 57 lines · 51 tokens per session scan A a359250897c0

Subscribe to this mod's changes

release is a skill published in the GitHub repository adammatthewsteinberger/clippy-pet (2 stars, last pushed 7d ago), licensed MIT. It adds 51 tokens to every session and 921 once invoked, about $0.0003 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

github

Full GitHub CLI control — issues, PRs, code reviews, repo management. Uses gh CLI with auth detection, rate limiting, and templates. Triggers on: github, issue, pull request, PR, code review, repo, branch, label, assignee, milestone, release, workflow, actions.

adolfousier/opencrabs · 0 tokens

release

Prepare, verify, and publish Sutando engine releases. Use when asked to prepare a release proposal, determine a version bump, audit release documentation, validate release gates, create a release PR, tag a confirmed release, or publish GitHub release notes. Preparation is safe and non-publishing; tagging and…

sonichi/sutando · 68 tokens

changelog-composer

Generates structured changelogs and release notes from git history and PRs, classifying breaking changes, features, fixes, performance, docs. Triggers on: "generate changelog", "write release notes", "what changed since", "prepare release", "release notes for", "diff since tag".

Mathews-Tom/armory · 67 tokens

repo-sentinel

Full security audit for public repositories across 12 attack surfaces: git history, secrets, CI/CD, containers, dependencies, licenses. Triggers on: "push to GitHub", "make repo public", "open source this", "is this safe to push", "release audit", "secret leaks".

Mathews-Tom/armory · 65 tokens

ship-workflow

Automated release pipeline: merges main, runs tests, pre-landing review, version bump, changelog, bisectable commits, and PR creation. Triggers on: "ship it", "release this", "prepare for release", "open a PR", "push and PR", "land this", "/ship-workflow".

Mathews-Tom/armory · 71 tokens

github

GitHub CLI operations via gh for issues, PRs, Actions, releases, and REST/GraphQL API with --json/--jq parsing. Triggers on: "create an issue", "submit a PR", "check CI status", "why did CI fail", "merge a PR", or pasted GitHub URLs.

Mathews-Tom/armory · 74 tokens