release-notes

release-notes is a command for Claude Code from elirantutia/vibeyard. It costs 0 tokens per session (560 once invoked), scanned A, original, MIT.

A command that writes project release notes to `CHANGELOG.md`. It determines the version, collects Git commits since the previous release, and groups them into categories.

In plain words
What is it for?
Use it when preparing a release to summarize new features, fixes, and other changes in the project.
Why use it?
It turns commit history into a consistent changelog without requiring you to sort and format every commit manually.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

About the project

Vibeyard is an IDE and project workspace for managing multiple AI coding-agent sessions, including parallel runs, split panes, task boards, cost tracking, and session resumption. It is for developers who use Claude Code, Codex CLI, or Gemini CLI and need to organize many agent-driven coding tasks. The catalogue add-ons provide commands, skills, and instructions for working with Vibeyard.

elirantutia/vibeyard · 1,360 stars · on GitHub

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/elirantutia/vibeyard/release-notes
Clone the repo
git clone --depth 1 https://github.com/elirantutia/vibeyard

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-notes

README.md
[![agentmods](https://agentmods.dev/badge/commands/elirantutia/vibeyard/release-notes.svg)](https://agentmods.dev/commands/elirantutia/vibeyard/release-notes)
Your own site
<a href="https://agentmods.dev/commands/elirantutia/vibeyard/release-notes"><img src="https://agentmods.dev/badge/commands/elirantutia/vibeyard/release-notes.svg" alt="Measured on agentmods" 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 560 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.1 $0.00000 $0.00560
Opus 5 $0.00000 $0.00280
Sonnet 5 $0.00000 $0.00112
Haiku 4.5 $0.00000 $0.00056

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

Security

Grade A, and why

release-notes 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 6d 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-notes.md · 57 lines

What it actually says

Generate release notes for this project and save them to CHANGELOG.md.

Instructions

  1. Determine the target version:

    • If an argument was provided (e.g., v0.3.0), use that as the version. Strip any leading v for display but use the v-prefixed form for tags.
    • If no argument was provided, read the version from package.json and prefix it with v for the tag name.
  2. Find the previous version tag:

    • Run git tag --list 'v*' --sort=-version:refname to list all version tags sorted descending.
    • The previous tag is the first tag that is NOT the current version's tag.
    • If no previous tag exists, use the root commit (git rev-list --max-parents=0 HEAD).
  3. Collect commits:

    • If the current version tag exists: collect commits between the previous tag and the current tag.
    • If the current version tag does NOT exist: collect commits between the previous tag and HEAD.
    • Use git log <range> --pretty=format:"%s" --no-merges to get commit subjects.
  4. Categorize commits into sections:

    • Features: commits starting with add, feat, implement, introduce, support (case-insensitive)
    • Fixes: commits starting with fix, resolve, patch, correct (case-insensitive)
    • Changes: everything else
    • Strip the prefix keyword from the message for cleaner display (e.g., "add dark mode" → "Dark mode")
    • Capitalize the first letter of each entry.
  5. Format the release notes entry:

    ## [<version>] - <YYYY-MM-DD>
    
    ### Features
    - Entry 1
    - Entry 2
    
    ### Fixes
    - Entry 1
    
    ### Changes
    - Entry 1
    
    • Omit any section that has zero entries.
    • Use today's date.
  6. Update CHANGELOG.md:

    • If CHANGELOG.md does not exist, create it with this header:
      # Changelog
      
      All notable changes to this project will be documented in this file.
      
      
    • Prepend the new release entry after the header (after the blank line following the description).
    • Do NOT duplicate an entry if one for this version already exists — warn the user instead.
  7. Output a summary of what was generated (number of commits categorized, sections included).

$ARGUMENTS

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. 6d ago First seen · 57 lines · 0 tokens per session scan A eca7b3d532a4

Subscribe to this mod's changes

release-notes is a command published in the GitHub repository elirantutia/vibeyard (1,360 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 560 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-30.