changelog-updater

changelog-updater is a skill for Claude Code from u9401066/template-is-all-you-need. It costs 74 tokens per session (1,512 once invoked), scanned A, original, Apache-2.0.

A workflow for updating CHANGELOG.md, the file that records what changed between software releases, using the Keep a Changelog format. It classifies changes such as new features, fixes, removals, and security updates.

In plain words
What is it for?
Use it after completing work or before a release to add entries for new, changed, deprecated, removed, fixed, or security-related items.
Why use it?
It turns scattered change information into a consistent release history and reduces the chance of forgetting important user-facing changes.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions Codex.

Good fit Use it after completing work or before a release to add entries for new, changed, deprecated, removed, fixed, or security-related items.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/u9401066/template-is-all-you-need/changelog-updater
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.

Any agent
npx skills add u9401066/template-is-all-you-need --skill changelog-updater
Clone the repo
git clone --depth 1 https://github.com/u9401066/template-is-all-you-need

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/u9401066/template-is-all-you-need/changelog-updater/github.svg)](https://agentmods.dev/skills/u9401066/template-is-all-you-need/changelog-updater)
Your own site
<a href="https://agentmods.dev/skills/u9401066/template-is-all-you-need/changelog-updater"><img src="https://agentmods.dev/badge/skills/u9401066/template-is-all-you-need/changelog-updater/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-updater

Your own site · 80×15
<a href="https://agentmods.dev/skills/u9401066/template-is-all-you-need/changelog-updater"><img src="https://agentmods.dev/badge/skills/u9401066/template-is-all-you-need/changelog-updater.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,512 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.00074 $0.01512
Opus 5 $0.00037 $0.00756
Sonnet 5 $0.00015 $0.00302
Haiku 4.5 $0.00007 $0.00151

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

Security

Grade A, and why

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

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.claude/skills/changelog-updater/SKILL.md · 218 lines

How it starts

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

CHANGELOG 更新技能

描述

根據變更內容自動更新 CHANGELOG.md,遵循 Keep a Changelog 格式。

觸發條件

  • 「更新 changelog」「CL」「變更紀錄」
  • git-precommit 編排器調用
  • 功能完成後需要記錄時

法規依據

  • 憲法:CONSTITUTION.md 第 7 條
  • 格式:Keep a Changelog 1.1.0

📁 CHANGELOG.md 標準格式

# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]

### Added
- 待發布的新功能

## [1.2.0] - 2026-01-15

### Added
- 新增用戶認證模組 (#123)
- 新增密碼重設功能

### Changed
- 改進登入頁面 UI

### Fixed
- 修復登出後 session 未清除問題 (#456)

## [1.1.0] - 2026-01-01

### Added
- 初始版本功能

🔧 操作步驟

Step 1: 讀取現有 CHANGELOG

read_file("CHANGELOG.md")

Step 2: 取得變更資訊

git-precommit 調用時,分析變更內容:

get_changed_files()

或從使用者提供的變更描述判斷。

Step 3: 分類變更

類型 使用時機 關鍵字偵測
Added 新功能 新增, add, feat, create
Changed 修改現有功能 變更, 修改, update, change, refactor
Deprecated 即將移除的功能 棄用, deprecate
Removed 已移除的功能 移除, 刪除, remove, delete
Fixed Bug 修復 修復, fix, bug, resolve
Security 安全性修復 安全, security, 漏洞, CVE

Step 4: 判斷版本號

依據 Semantic Versioning

MAJOR.MINOR.PATCH

├── MAJOR: 不相容的 API 變更(Breaking Changes)
│   - 移除功能
│   - API 簽名變更
│   - 資料格式變更
│
├── MINOR: 新增功能(向下相容)
│   - 新增 API
│   - 新增功能模組
│   - 新增設定選項
│
└── PATCH: Bug 修復(向下相容)
    - 修復錯誤
    - 安全性修補
    - 文檔修正

Step 5: 更新 CHANGELOG

方式 A:新增到 Unreleased(推薦用於開發中)

oldString: "## [Unreleased]\n\n### Added"
newString: "## [Unreleased]\n\n### Added\n- 新增功能描述"

方式 B:發布新版本(用於 release)

oldString: "## [Unreleased]\n\n### Added\n- 新功能"
newString: "## [Unreleased]\n\n## [1.2.0] - 2026-01-15\n\n### Added\n- 新功能"

📝 條目撰寫規範

好的寫法

### Added
- 新增使用者認證模組,支援 OAuth2.0 (#123)
- 實作密碼強度檢查功能

### Fixed
- 修復登出後 session 未正確清除的問題 (#456)

Read the full file on GitHub · 218 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. 12d ago First seen · 218 lines · 0 tokens per session scan A 7e17b2a47f95

Subscribe to this mod's changes

changelog-updater is a skill published in the GitHub repository u9401066/template-is-all-you-need (3 stars, last pushed 6mo ago), licensed Apache-2.0. It adds 74 tokens to every session and 1,512 once invoked, about $0.0004 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.

Related

Other skills, from other repositories