{{project_slug}}-release

{{project_slug}}-release is a skill for Claude Code from big-emotion/agent-atelier. It costs 112 tokens per session (2,778 once invoked), scanned C, original, MIT.

A release procedure that updates a project's version, changelog, and Git tag. Git is the version-control system used to track code changes; the procedure prepares these changes locally and asks before sending them to the shared repository.

In plain words
What is it for?
It is for cutting patch, minor, major, or explicitly numbered releases from the main branch.
Why use it?
It removes the need to coordinate version numbers, release notes, commits, and tags by hand. The confirmation step prevents an unintentional push.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the project-standard plugin — 6 skills shipped together

Good fit It is for cutting patch, minor, major, or explicitly numbered releases from the main branch.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/big-emotion/agent-atelier/release
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 big-emotion/agent-atelier --skill release
Clone the repo
git clone --depth 1 https://github.com/big-emotion/agent-atelier

Made for: Claude Code.

Or install project-standard, the plugin that ships this one along with the rest of its 6 skills.

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 {{project_slug}}-release

README.md
[![agentmods](https://agentmods.dev/badge/skills/big-emotion/agent-atelier/release/github.svg)](https://agentmods.dev/skills/big-emotion/agent-atelier/release)
Your own site
<a href="https://agentmods.dev/skills/big-emotion/agent-atelier/release"><img src="https://agentmods.dev/badge/skills/big-emotion/agent-atelier/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 {{project_slug}}-release

Your own site · 80×15
<a href="https://agentmods.dev/skills/big-emotion/agent-atelier/release"><img src="https://agentmods.dev/badge/skills/big-emotion/agent-atelier/release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 112 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,778 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. 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.00112 $0.02778
Opus 5 $0.00056 $0.01389
Sonnet 5 $0.00022 $0.00556
Haiku 4.5 $0.00011 $0.00278

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

Security

Grade C, and why

{{project_slug}}-release scanned grade C with 1 finding 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.

Hidden instructionshighPrompt injection

Directives inside HTML comments, invisible characters or bidirectional overrides are read by the model and not by the person reviewing the file.

<!-- PROJECT-SPECIFIC: list the deploy workflow's steps in the post-push message (build, deploy target, GitHub Release creation, deployment annotations, conditional re-syncs). If the workflow creates the GitHub Release i
plugins/project-standard/skills/setup/templates/m3-skills/release.SKILL.md · 249 lines

How it starts

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

{{project_display_name}} Release

Prepare a release locally (bump version, update CHANGELOG, create the commit and tag), then ask for explicit confirmation before pushing.

This skill writes to the local repo first. It only runs git push after the user explicitly confirms. Without confirmation, the commit + tag stay local.

When to Activate

  • User says: "release {{project_slug}}", "cut a release", "bump version", "tag a new version", "ship a release".
  • User invokes /{{project_slug}}-release (optionally with a bump level: patch | minor | major | <explicit-version>).

Preconditions

Verify all of the following before any write. If any fail, do not modify anything — report the blocker and exit.

  1. In the repo rootpackage.json has "name": "{{project_slug}}". If not, stop and tell the user to cd to the right directory.
  2. Clean working treegit status --porcelain must be empty. If dirty, stop and ask the user to commit or stash.
  3. On {{default_branch}} branchgit branch --show-current must return {{default_branch}}. If not, stop. Releases ship from {{default_branch}} only; feature work lands on {{integration_branch}} first (Ferry branch model).
  4. Up to date with origin/{{default_branch}} — run git fetch origin then git rev-list --count {{default_branch}}..origin/{{default_branch}}. If > 0, stop and tell the user to git pull.
  5. CI green on HEAD — run:
    HEAD_SHA=$(git rev-parse HEAD)
    gh run list --repo {{github_org}}/{{github_repo}} \
      --commit "$HEAD_SHA" --workflow ci.yml \
      --limit 1 --json conclusion,status,url
    
    The latest run must have conclusion: "success". If no run exists for HEAD, or the conclusion is not success, stop and provide the run URL so the user can investigate.

Read the full file on GitHub · 249 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 · 249 lines · 0 tokens per session scan C f43de67b7c29

Subscribe to this mod's changes

{{project_slug}}-release is a skill published in the GitHub repository big-emotion/agent-atelier (2 stars, last pushed 5d ago), licensed MIT. It adds 112 tokens to every session and 2,778 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it C with 1 finding (hidden instructions). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-08.

Related

Other skills, from other repositories

public-release-prep

Audit a private git repository for secrets and personally-identifying info before it goes public, then carry out the cleanup. Use this whenever the user wants to open-source a repo, flip a GitHub repo from private to public, "clean up before going public," or asks whether a repo is safe to share externally — even if…

S24DeFi/global-lib-skills · 151 tokens

open-pr

Use this skill to submit the commits on the current branch as one pull request against a GitHub repository. Push the branch, open the PR with an imperative title and a body that names what changed and why, and post a follow-up ping only when CODEOWNERS resolves to one person. One branch per run, one pull request per…

khrichtchatyi/ship-it · 79 tokens

release

CONTRIBUTOR TOOL - Cut a plugin release: bump plugin.json version, finalize CHANGELOG, update README if needed, gate on make ci, commit, tag vX.Y.Z, and create the GitHub release. Use when shipping a new plugin version. NOT distributed.

oliver-kriska/claude-elixir-phoenix · 60 tokens

release

Cut a brooks-lint release: set the version in package.json, propagate it across all four plugin manifests and every version-bearing text file (README badges, docs site metadata), write the CHANGELOG entry, validate, then commit, push, tag, and publish the GitHub release. Triggers when the maintainer asks to "release"…

hyhmrright/brooks-lint · 135 tokens

han-release

Cut a Han release: update CHANGELOG.md with the changes since the last release, bump and tag every plugin that changed as {plugin-name}--v{version} so a version-constrained dependency can resolve, and publish a GitHub release crediting every merged pull request and closed issue to the people behind it. Use when…

testdouble/han · 172 tokens

push-ci

Push to remote and monitor CI. Validates branch safety, executes git push WITH explicit user approval, then monitors CI run status via gh CLI. Use when: user says 'push', 'push and watch CI', 'ship it', 'push-ci'. Not for: committing (use /smart-commit), creating PRs (use /create-pr), merging (use /merge-prep).

sd0xdev/sd0x-harness · 82 tokens