voyager-changelog

voyager-changelog is a skill for Claude Code from fxd0h/Axelera-Voyager-Local-Assistant. It costs 42 tokens per session (503 once invoked), scanned A, original, MIT.

A command that creates a short Keep a Changelog entry for the current pull request. Keep a Changelog is a common format for recording user-visible software changes.

In plain words
What is it for?
Use it to classify changes as added, fixed, changed, or security-related and save the result under changes/.
Why use it?
It turns commit and pull-request changes into a consistent release-note fragment without requiring manual wording.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is bash scripts/checks/verify-commit-changelog.sh.

Good fit Use it to classify changes as added, fixed, changed, or security-related and save the result under changes/.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/fxd0h/Axelera-Voyager-Local-Assistant
agentmods
npx agentmods add skills/fxd0h/axelera-voyager-local-assistant/voyager-changelog

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/fxd0h/axelera-voyager-local-assistant/voyager-changelog/github.svg)](https://agentmods.dev/skills/fxd0h/axelera-voyager-local-assistant/voyager-changelog)
Your own site
<a href="https://agentmods.dev/skills/fxd0h/axelera-voyager-local-assistant/voyager-changelog"><img src="https://agentmods.dev/badge/skills/fxd0h/axelera-voyager-local-assistant/voyager-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 voyager-changelog

Your own site · 80×15
<a href="https://agentmods.dev/skills/fxd0h/axelera-voyager-local-assistant/voyager-changelog"><img src="https://agentmods.dev/badge/skills/fxd0h/axelera-voyager-local-assistant/voyager-changelog.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 503 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.00042 $0.00503
Opus 5 $0.00021 $0.00251
Sonnet 5 $0.00008 $0.00101
Haiku 4.5 $0.00004 $0.00050

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

Security

Grade A, and why

voyager-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 12d 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.

skills/voyager-changelog/SKILL.md · 68 lines

What it actually says

Changelog Fragment Generator

Generate a Keep a Changelog fragment for the current changes.

Instructions

Step 1: Get PR number

PR_NUMBER=$(gh pr view --json number -q .number 2>/dev/null || echo "")

If $ARGUMENTS contains a number, use that. If no PR number is available from either source, ask the user to provide one or create the PR first.

Step 2: Analyze changes

git diff --stat origin/main...HEAD
git log --oneline origin/main..HEAD

Map commit types to fragment types:

Commit type Fragment type
feat added
fix fixed
security, deps (CVE) security
perf, deps (routine) changed
refactor, docs, style, test, build, ci, chore skip (recommend skip-changelog label)

Step 3: Write fragment

File: changes/{PR_NUMBER}.{type}.md Set FRAGMENT_TYPE to the mapped type before writing, for example FRAGMENT_TYPE=added.

Rules:

  • 1-2 sentences, user-facing language
  • Imperative present tense ("Add X" not "Added X")
  • No file paths, commit hashes, or implementation details

Good: "Add workspace selector to the dashboard sidebar" Good: "Fix authentication token refresh loop on expired sessions" Good: "Upgrade requests library to address CVE-2026-25645" Bad: "Updated auth.ts to fix bug" Bad: "Refactored the codebase"

Step 4: Verify

test -s "changes/${PR_NUMBER}.${FRAGMENT_TYPE}.md"
cat "changes/${PR_NUMBER}.${FRAGMENT_TYPE}.md"

# When available, run the repo's fragment verifier
bash scripts/checks/verify-commit-changelog.sh

If no user-facing changes, tell the user to add the skip-changelog label instead. Do not read or rewrite unrelated fragments while verifying this PR.

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 68 lines · 42 tokens per session scan A a7f4d5529c2b

Subscribe to this mod's changes

voyager-changelog is a skill published in the GitHub repository fxd0h/Axelera-Voyager-Local-Assistant (4 stars, last pushed 1mo ago), licensed MIT. It adds 42 tokens to every session and 503 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-31.