release

release is a command for Claude Code from mizukaizen/hive-doctrine-mcp. It costs 0 tokens per session (517 once invoked), scanned A, original, MIT.

A release command that prepares and publishes a software version using semantic versioning, a convention for marking major, minor, and patch changes.

In plain words
What is it for?
Use it to inspect commits, choose a version increase, update package files, generate a changelog, write major-version migration instructions, and publish the release.
Why use it?
It removes much of the manual work involved in choosing a version, updating files, writing release notes, and creating a release tag.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md).

Good fit Use it to inspect commits, choose a version increase, update package files, generate a changelog, write major-version migration instructions, and publish the release.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/mizukaizen/hive-doctrine-mcp/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.

Clone the repo
git clone --depth 1 https://github.com/mizukaizen/hive-doctrine-mcp

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/commands/mizukaizen/hive-doctrine-mcp/release/github.svg)](https://agentmods.dev/commands/mizukaizen/hive-doctrine-mcp/release)
Your own site
<a href="https://agentmods.dev/commands/mizukaizen/hive-doctrine-mcp/release"><img src="https://agentmods.dev/badge/commands/mizukaizen/hive-doctrine-mcp/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/commands/mizukaizen/hive-doctrine-mcp/release"><img src="https://agentmods.dev/badge/commands/mizukaizen/hive-doctrine-mcp/release.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 517 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.00000 $0.00517
Opus 5 $0.00000 $0.00259
Sonnet 5 $0.00000 $0.00103
Haiku 4.5 $0.00000 $0.00052

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

gated-products/honey/claude-packages/HD-4003-oss-maintainer/commands/release.md · 73 lines

How it starts

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

Command: /release

Prepare and publish a semver-compliant release.

Usage

/release [major|minor|patch]

If no version type is specified, analyse commits since the last tag to determine the appropriate bump.

Process

Step 1: Determine Version

# Get current version
git describe --tags --abbrev=0

# List commits since last tag
git log $(git describe --tags --abbrev=0)..HEAD --oneline

Apply semver rules:

  • Any commit with breaking: or BREAKING CHANGE in the body = major
  • Any commit with feat: = minor (unless major is triggered)
  • Only fix:, docs:, chore: = patch

Step 2: Generate Changelog

Run /changelog to generate entries. Review the output for accuracy.

Step 3: Update Version Files

Update version references in:

  • package.json (Node.js)
  • Cargo.toml (Rust)
  • pyproject.toml (Python)
  • Any other version files detected in the project

Step 4: Write Migration Guide (if major)

For major version bumps, generate a migration guide covering:

  • What changed and why
  • Before/after code examples
  • Step-by-step upgrade instructions

Save to docs/migration/v[X]-to-v[Y].md.

Step 5: Create Release Commit and Tag

git add -A
git commit -m "chore: release v[X.Y.Z]"
git tag -a "v[X.Y.Z]" -m "Release v[X.Y.Z]"

Step 6: Publish

  • Push commits and tags: git push origin main --tags
  • Create GitHub release with changelog as the body
  • Publish to package registry if applicable

Step 7: Post-Release

  • Verify the release appears on GitHub
  • Verify the package is available on the registry
  • Close the milestone (if one was used)
  • Report: "Released v[X.Y.Z] with [N] changes"

Rules

  • Never release on a Friday. If it is Friday, schedule for Monday.
  • Never release without running the full test suite.
  • If any breaking change is found but the version type is set to minor or patch, stop and warn.
  • Always review the generated changelog before publishing — automated output needs human verification.

Read the full file on GitHub · 73 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. 9d ago First seen · 73 lines · 0 tokens per session scan A b6dd957d6ca4

Subscribe to this mod's changes

release is a command published in the GitHub repository mizukaizen/hive-doctrine-mcp (0 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 517 tokens. 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.