GenerateReleaseNote

GenerateReleaseNote is a command for Claude Code from Evyasys-Software-Solutions/EvyaGovernance. It costs 68 tokens per session (1,052 once invoked), scanned B, original, MIT.

A release-note command that turns completed development stories into a short, branded PDF. It reads quality-check records, groups changes by larger work areas, and suggests a version number from past releases.

In plain words
What is it for?
Use it to create release notes from selected story IDs or from stories you choose interactively. The PDF is saved for sharing with the release.
Why use it?
It removes the need to collect finished work, quality results, and release details by hand. It also gives teams a consistent document for describing a release.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the evyasys plugin — 15 skills, 15 commands shipped together

Good fit Use it to create release notes from selected story IDs or from stories you choose interactively. The PDF is saved for sharing with the release.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/evyasys-software-solutions/evyagovernance/generatereleasenote
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/Evyasys-Software-Solutions/EvyaGovernance

Made for: Claude Code.

Or install evyasys, the plugin that ships this one along with the rest of its 15 skills, 15 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 GenerateReleaseNote

README.md
[![agentmods](https://agentmods.dev/badge/commands/evyasys-software-solutions/evyagovernance/generatereleasenote/github.svg)](https://agentmods.dev/commands/evyasys-software-solutions/evyagovernance/generatereleasenote)
Your own site
<a href="https://agentmods.dev/commands/evyasys-software-solutions/evyagovernance/generatereleasenote"><img src="https://agentmods.dev/badge/commands/evyasys-software-solutions/evyagovernance/generatereleasenote/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 GenerateReleaseNote

Your own site · 80×15
<a href="https://agentmods.dev/commands/evyasys-software-solutions/evyagovernance/generatereleasenote"><img src="https://agentmods.dev/badge/commands/evyasys-software-solutions/evyagovernance/generatereleasenote.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 68 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,052 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 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.00068 $0.01052
Opus 5 $0.00034 $0.00526
Sonnet 5 $0.00014 $0.00210
Haiku 4.5 $0.00007 $0.00105

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

Security

Grade B, and why

GenerateReleaseNote scanned grade B 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 11d 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.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

macOS / Linux (Bash): `EVYA_AI=$(find "$HOME/.claude/plugins" -maxdepth 6 -type d -name ".ai" 2>/dev/null | grep -i "EvyaGovernance" | head -1); [ -z "$EVYA_AI" ] && EVYA_AI=".ai"; echo "$EVYA_AI"`
commands/GenerateReleaseNote.md · 70 lines

How it starts

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

You are running /evyasys:GenerateReleaseNote.

Quick summary

  1. Parse story IDs from $ARGUMENTS. If none provided, ask: "Which story IDs should I include in this release? (e.g. EVYA-1042 EVYA-1043)"

  2. Find the plugin's installed workflow directory, then read the workflow files from it:

    macOS / Linux (Bash): EVYA_AI=$(find "$HOME/.claude/plugins" -maxdepth 6 -type d -name ".ai" 2>/dev/null | grep -i "EvyaGovernance" | head -1); [ -z "$EVYA_AI" ] && EVYA_AI=".ai"; echo "$EVYA_AI"

    Windows (PowerShell): $EVYA_AI = (Get-ChildItem "$env:USERPROFILE\.claude\plugins" -Recurse -Directory -Filter ".ai" -ErrorAction SilentlyContinue | Where-Object { $_.FullName -like '*EvyaGovernance*' } | Select-Object -First 1 -ExpandProperty FullName); if (-not $EVYA_AI) { $EVYA_AI = ".ai" }; Write-Output $EVYA_AI

    Load from <plugin-ai>/workflows/generate-release-note/ (replace <plugin-ai> with the printed path). If any file is not found at the plugin path, fall back to the same filename under .ai/workflows/generate-release-note/:

    • <plugin-ai>/workflows/generate-release-note/AGENT.md
    • <plugin-ai>/workflows/generate-release-note/PROMPT.md
    • <plugin-ai>/workflows/generate-release-note/CHECKLIST.md
    • <plugin-ai>/workflows/generate-release-note/RELEASE_DOC_TEMPLATE.md
    • .evyasys/workflows/generate-release-note/*.md (project overrides if any)
    • .evyasys/project.yaml (brand color, company name, output dir, naming convention)
    • .evyasys/memory/release-notes.json (version history)
  3. For each story ID, locate .evyasys/board/**/<id>/ and read:

    • <id>_UserStory.md — title, epic, story points, impacted areas
    • <id>_ReleaseNotes.md — what's new, changelog, rollback (required — flag if missing)
    • <id>_TestPlan.md — TC outcomes and quality gate results
  4. Propose a version/release name from history + project naming convention. Confirm with user.

  5. Draft the release document using RELEASE_DOC_TEMPLATE.md:

    • Executive summary (3–5 sentences, no jargon)
    • Stories grouped by Epic, each with user-facing changelog
    • Consolidated quality gate table
    • Known issues, deployment notes, rollback
  6. Self-review with CHECKLIST.md. Fix silently if any item fails.

  7. Show the complete document to the user. Tell them what files will be saved. Wait for approval.

  8. On approval, output the <!-- EVYARELEASE {...} --> block.

  9. The hook:

    • Saves .evyasys/releases/<name>_<date>.md (markdown)
    • Generates .evyasys/releases/<name>_<date>.pdf (branded PDF via pdfkit)
    • Updates .evyasys/memory/release-notes.json (release history)
    • Sends notification if configured

Read the full file on GitHub · 70 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. 11d ago First seen · 70 lines · 68 tokens per session scan B ab110475a7c8

Subscribe to this mod's changes

GenerateReleaseNote is a command published in the GitHub repository Evyasys-Software-Solutions/EvyaGovernance (7 stars, last pushed 29d ago), licensed MIT. It adds 68 tokens to every session and 1,052 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.