release

release is a command for Claude Code from justinjdev/fight-club. It costs 25 tokens per session (785 once invoked), scanned A, original, Apache-2.0.

A release command that guides a new software version from change review through publishing. It updates the version, documentation, site, changelog, Git tag, remote repository, and marketplace repository.

In plain words
What is it for?
Use it to choose a version from recent commits, update release notes and documentation, create and push a tag, and update the marketplace repository.
Why use it?
It gathers the many release tasks into one guided process and checks documentation before publishing.

Command for Claude Code

Part of the fight-club plugin — 5 skills, 2 commands shipped together

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 commands/justinjdev/fight-club/release
Clone the repo
git clone --depth 1 https://github.com/justinjdev/fight-club

Made for: Claude Code.

Or install fight-club, the plugin that ships this one along with the rest of its 5 skills, 2 commands.

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/commands/justinjdev/fight-club/release.svg)](https://agentmods.dev/commands/justinjdev/fight-club/release)
Your own site
<a href="https://agentmods.dev/commands/justinjdev/fight-club/release"><img src="https://agentmods.dev/badge/commands/justinjdev/fight-club/release.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 785 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.00025 $0.00785
Opus 5 $0.00013 $0.00392
Sonnet 5 $0.00005 $0.00157
Haiku 4.5 $0.00003 $0.00078

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

.claude/commands/release.md · 102 lines

How it starts

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

Release

Automates the full release process for fellowship.

Step 1: Determine Version

Read the current version from .claude-plugin/plugin.json.

Analyze commits since the last tag (git log $(git describe --tags --abbrev=0)..HEAD --oneline --no-merges) and suggest a version based on conventional commit types:

  • feat: → minor bump
  • fix: only → patch bump
  • Breaking changes → minor bump (pre-1.0: major)

Present the suggestion and ask the user to confirm or override:

Current version: X.Y.Z
Commits since last tag: N

Suggested next version: X.Y.Z (reason)

Enter version to release (or confirm suggested):

Use AskUserQuestion with the suggested version as default and a free-text option.

Step 2: Audit Docs and Site

Before bumping anything, verify all documentation is current. Check each item and report status:

Changelog (site)

Read site/src/routes/changelog/+page.svelte. If there is an "Unreleased" section, it should be renamed to the new version. If there is no unreleased section and there are commits since the last changelog entry, flag it as needing an update.

Changelog (README)

Read README.md and check the ## Changelog section. If the latest entry doesn't cover the commits being released, flag it.

Skills page

Read site/src/routes/skills/+page.svelte. Cross-reference against plugin/skills/ and plugin/commands/ directories. Flag any skills or commands that exist but aren't documented.

Agents page

Read site/src/routes/agents/+page.svelte. Cross-reference against plugin/agents/ directory. Flag any agents that exist but aren't documented.

If any flags were raised, present them and ask the user whether to fix them now or proceed anyway. If fixing, make the updates before continuing.

Step 3: Bump Version

Update the version string in .claude-plugin/plugin.json.

If the site changelog has an "Unreleased" section, rename it to the new version with the standard format:

<section class="version" id="v{version-dashed}">
    <h2 class="version-heading"><a href="{base}/changelog#v{version-dashed}">v{version}</a></h2>

Read the full file on GitHub · 102 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 · 102 lines · 25 tokens per session scan A dd11fe6b5c2d

Subscribe to this mod's changes

release is a command published in the GitHub repository justinjdev/fight-club (1 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 25 tokens to every session and 785 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.