mcpadvisor: Command for Claude Code

.claude/commands/generate-changelog.md

generate-changelog is a command for Claude Code from istarwyh/mcpadvisor. It costs 0 tokens per session (4,158 once invoked), scanned A, original, MIT.

A command for viewing and changing VBW settings, including its effort profile, verification level, and links to skills.

In plain words
What is it for?
Use it to inspect or adjust how much work VBW performs, how thoroughly it verifies results, and how its skills are connected.
Why use it?
It puts these project or agent settings in one place instead of requiring manual configuration changes.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: names the TodoWrite tool; mentions Claude Code.

This is istarwyh/mcpadvisor's own configuration. It tells Claude Code how to work on mcpadvisor 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 mcpadvisor configures →

Reuse

Borrowing it

Nothing to install: this file belongs to istarwyh/mcpadvisor. 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/istarwyh/mcpadvisor/main/.claude/commands/generate-changelog.md
Clone the repo
git clone --depth 1 https://github.com/istarwyh/mcpadvisor

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

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/istarwyh/mcpadvisor/generate-changelog"><img src="https://agentmods.dev/badge/commands/istarwyh/mcpadvisor/generate-changelog.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 4,158 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.04158
Opus 5 $0.00000 $0.02079
Sonnet 5 $0.00000 $0.00832
Haiku 4.5 $0.00000 $0.00416

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

Security

Grade A, and why

generate-changelog 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/commands/generate-changelog.md · 478 lines

How it starts

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

Generate CHANGELOG.md from git commit history: $ARGUMENTS.

This command supports multiple modes:

  • Full changelog: Generate changelog from all commits since last tag
  • PR changelog: Generate changelog for the latest merged PR only
  • Range changelog: Generate changelog for specific commit range

USAGE MODES

Mode 1: Latest PR Changelog

claude generate-changelog --pr
claude generate-changelog --latest-pr

Mode 2: Full Version Changelog

claude generate-changelog
claude generate-changelog --full

Mode 3: Custom Range Changelog

claude generate-changelog --range v1.0.0..HEAD
claude generate-changelog --since v1.0.0

PLAN

  1. Determine changelog scope (PR, full, or range)
  2. Analyze commit history and identify relevant commits
  3. Parse conventional commits to categorize changes
  4. Generate structured changelog with proper formatting
  5. Update existing CHANGELOG.md or create new one
  6. Validate and commit the changelog updates

PREREQUISITES

  • Ensure you're on the main branch with latest changes:

    git checkout main
    git pull origin main
    
  • Verify git history is available:

    git log --oneline -10
    

CHANGELOG GENERATION

Step 1: Determine Scope and Get Commits

Use TodoWrite tool to track progress, then determine which commits to include:

For Latest PR Mode (--pr or --latest-pr):

# Find the most recent merged PR
LATEST_PR=$(gh pr list --state merged --limit 1 --json number --jq '.[0].number')
echo "Latest merged PR: #$LATEST_PR"

# Get PR details
gh pr view $LATEST_PR --json title,headRefName,baseRefName,mergeCommit

# Get commit range for the PR (from merge base to merge commit)
MERGE_COMMIT=$(gh pr view $LATEST_PR --json mergeCommit --jq '.mergeCommit.oid')
BASE_BRANCH=$(gh pr view $LATEST_PR --json baseRefName --jq '.baseRefName')
PR_BRANCH=$(gh pr view $LATEST_PR --json headRefName --jq '.headRefName')

# Find merge base and get PR commits
MERGE_BASE=$(git merge-base origin/$BASE_BRANCH $MERGE_COMMIT)
COMMIT_RANGE="$MERGE_BASE..$MERGE_COMMIT"

echo "PR commit range: $COMMIT_RANGE"
echo "Commits in PR #$LATEST_PR:"
git log $COMMIT_RANGE --oneline --pretty=format:"%h %s"

Read the full file on GitHub · 478 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 · 478 lines · 0 tokens per session scan A 0f61e3d2b55e

Subscribe to this mod's changes

generate-changelog is a command published in the GitHub repository istarwyh/mcpadvisor (89 stars, last pushed 6mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 4,158 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.