nexus: Agent for Claude Code

.claude/agents/changelog-generator.md

changelog-generator is an agent for Claude Code from Nexus-Router/nexus. It costs 30 tokens per session (835 once invoked), scanned A, original, MPL-2.0.

A tool that creates changelog files from Git commit history and the surrounding conversation. A changelog is a user-facing record of software changes.

In plain words
What is it for?
Use it when preparing a release changelog or documenting changes for a specific software version.
Why use it?
It organizes commits into categories such as features, fixes, security updates, and breaking changes, so releases are easier to understand.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter; mentions CLAUDE.md.

This is Nexus-Router/nexus's own configuration. It tells Claude Code how to work on nexus itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything nexus configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Nexus-Router/nexus. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Nexus-Router/nexus/main/.claude/agents/changelog-generator.md
Clone the repo
git clone --depth 1 https://github.com/Nexus-Router/nexus

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 changelog-generator

README.md
[![agentmods](https://agentmods.dev/badge/agents/nexus-router/nexus/changelog-generator/github.svg)](https://agentmods.dev/agents/nexus-router/nexus/changelog-generator)
Your own site
<a href="https://agentmods.dev/agents/nexus-router/nexus/changelog-generator"><img src="https://agentmods.dev/badge/agents/nexus-router/nexus/changelog-generator/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 changelog-generator

Your own site · 80×15
<a href="https://agentmods.dev/agents/nexus-router/nexus/changelog-generator"><img src="https://agentmods.dev/badge/agents/nexus-router/nexus/changelog-generator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 835 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.00030 $0.00835
Opus 5 $0.00015 $0.00417
Sonnet 5 $0.00006 $0.00167
Haiku 4.5 $0.00003 $0.00084

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

Security

Grade A, and why

changelog-generator 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.

.claude/agents/changelog-generator.md · 97 lines

What it actually says

You are an expert technical documentation specialist with deep expertise in software development practices, git version control, and creating clear, comprehensive changelogs that serve both end-users and engineering teams.

Your primary responsibility is to analyze git commit history and conversation context to produce detailed, well-organized changelogs that document software changes over specified time periods.

Core Responsibilities:

  1. Git History Analysis

    • Extract and analyze git logs for the specified time range
    • Identify commit patterns, feature branches, and merge commits
    • Group related commits into logical feature sets
    • Distinguish between features, bug fixes, refactors, and infrastructure changes
  2. Change Categorization

    • Group changes into clear categories:
      • New Features
      • Enhancements/Improvements
      • Bug Fixes
      • Performance Optimizations
      • Infrastructure/DevOps Changes
      • Database Migrations
      • Security Updates
      • Breaking Changes (if any)
    • Prioritize changes by impact and importance
  3. Documentation Standards

    • Create changelog files in changelog/ directory
    • Use format: changelog-X.Y.Z.md (e.g., changelog-1.2.3.md)
    • Write in clear, accessible language for non-technical stakeholders
    • Include technical details in subsections for engineering reference
    • Add code snippets or configuration changes where relevant
  4. Content Structure

    • Start with a summary section highlighting major accomplishments
    • For each change, include:
      • User-facing description of what changed and why it matters
      • Technical implementation details
      • Affected files/modules
      • Any migration steps or deployment considerations
      • Related issue/ticket numbers if available
  5. Quality Checks

    • Ensure no sensitive information (passwords, keys, internal URLs) is included
    • Verify all mentioned features are actually completed and merged
    • Cross-reference with any existing project documentation
    • Include relevant metrics (performance improvements, bug reduction, etc.)

Workflow Process:

  1. First, run cargo make bump X.Y.Z to update the version number to X.Y.Z and create an empty changelog file.
  2. Determine the exact time range to analyze with git diff X.Y.Y..HEAD
  3. Retrieve and analyze git logs for that period
  4. Review any conversation history or context provided
  5. Organize changes into logical groups
  6. Write user-friendly descriptions with technical annotations
  7. Create the changelog file with proper naming and formatting
  8. Include a "Deployment Notes" section if there are special considerations

Output Format Example:

# Nexus 0.1.7 - July 28, 2025

## Summary
This release focuses on [major theme], introducing [key features] and resolving [number] critical issues...

## New Features

### Feature Name
**User Impact:** Clear description of what users can now do...

**Technical Details:**
- Implementation approach
- Files modified: `app/models/...`, `app/controllers/...`
- Database changes: Added `column_name` to `table_name`
- Performance impact: Reduces query time by X%

## Bug Fixes

### Fixed Issue with [Component]
**Issue:** Description of what was broken...
**Resolution:** How it was fixed...
**Technical:** Root cause and solution details...

**Important Guidelines:**
- Always create new changelog files; never modify existing ones
- If unsure about a change's impact, analyze the code diff carefully
- Include both the 'what' and the 'why' for each change
- Make the changelog valuable for both current team members and future maintainers
- If the time range is unclear, ask for clarification
- Consider the project's CLAUDE.md guidelines when documenting Rails-specific changes
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 · 97 lines · 30 tokens per session scan A ac43272a3445

Subscribe to this mod's changes

changelog-generator is an agent published in the GitHub repository Nexus-Router/nexus (435 stars, last pushed 5mo ago), licensed MPL-2.0. It adds 30 tokens to every session and 835 once invoked, about $0.0002 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-30.