release

release is a skill for Claude Code from davila7/claude-with-skills. It costs 47 tokens per session (480 once invoked), scanned A, original, MIT.

A release workflow for recording changes, updating a project's version, creating a Git tag, and publishing a GitHub release. A Git tag is a named marker for a specific code version.

In plain words
What is it for?
It is for releasing a specified version or patch, minor, or major update through the project's changelog, package version, tag, and GitHub release.
Why use it?
It organizes the release steps and checks that the project has no uncommitted changes before starting.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit It is for releasing a specified version or patch, minor, or major update through the project's changelog, package version, tag, and GitHub release.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/davila7/claude-with-skills/release
About the project

Claude With Skills is a progressive course that teaches developers to create reusable, portable Agent Skills for Claude Code, from basic SKILL.md files to advanced automation and plugin packaging. It is intended for developers who want repeatable instructions and workflows instead of repeatedly pasting the same guidance. The catalogue contains the course's skills, agents, and instruction.

davila7/claude-with-skills · 11 stars · on GitHub · claude-with-skills.vercel.app

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.

Any agent
npx skills add davila7/claude-with-skills --skill release
Clone the repo
git clone --depth 1 https://github.com/davila7/claude-with-skills

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/davila7/claude-with-skills/release/github.svg)](https://agentmods.dev/skills/davila7/claude-with-skills/release)
Your own site
<a href="https://agentmods.dev/skills/davila7/claude-with-skills/release"><img src="https://agentmods.dev/badge/skills/davila7/claude-with-skills/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/davila7/claude-with-skills/release"><img src="https://agentmods.dev/badge/skills/davila7/claude-with-skills/release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 480 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.00047 $0.00480
Opus 5 $0.00023 $0.00240
Sonnet 5 $0.00009 $0.00096
Haiku 4.5 $0.00005 $0.00048

Measured 10d ago against content hash aaeb4b4f57b3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, 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 10d 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.

src/content/docs/03-advanced/lesson-05-skills-orchestrating-skills/examples/release-flow/.claude/skills/release/SKILL.md · 41 lines

What it actually says

Run the complete release workflow for $ARGUMENTS (e.g., 1.2.0, patch, minor, major).

If $ARGUMENTS is empty, stop and tell the user: "Provide a version or bump type — for example: /release patch or /release 1.2.0."

Pre-flight

Check the current state before doing anything:

!git status --short 2>&1

!git describe --tags --abbrev=0 2>/dev/null && echo "latest tag found" || echo "no tags yet"

If the working tree is dirty (uncommitted changes shown above), stop and tell the user to commit or stash their changes before running the release workflow. A release must start from a clean state.

Steps

  1. Run /changelog-entry to generate the changelog entry for all commits since the last tag.

    Review the output carefully. Ask the user: "Does this changelog entry look accurate? Type 'yes' to continue or 'edit' to open CHANGELOG.md first."

    If the user says 'edit', open CHANGELOG.md and wait for them to confirm they are done editing before continuing.

  2. Run /tag-version $ARGUMENTS to bump the version in package.json and create the annotated git tag.

    Confirm the tag was created by showing the output of git describe --tags --abbrev=0.

  3. Run /publish to push the tag to origin and create the GitHub release.

  4. Report the release URL returned by /publish. Tell the user the release is complete.

If any step fails, stop immediately and report which step failed and what the error was. Do not attempt to continue after a failure.

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. 10d ago First seen · 41 lines · 47 tokens per session scan A aaeb4b4f57b3

Subscribe to this mod's changes

release is a skill published in the GitHub repository davila7/claude-with-skills (11 stars, last pushed 3mo ago), licensed MIT. It adds 47 tokens to every session and 480 once invoked, about $0.0002 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.