rootcause-mcp: Skill for Claude Code

.claude/skills/changelog-updater/SKILL.md

changelog-updater is a skill for Claude Code from u9401066/rootcause-mcp. It costs 0 tokens per session (1,512 once invoked), scanned A, a copy of changelog-updater, Apache-2.0.

A guide for updating CHANGELOG.md, a file that records notable software changes, using the Keep a Changelog format. It covers additions, changes, fixes, and breaking changes.

In plain words
What is it for?
Use it after completing features or fixes, during version releases, or as part of a pre-commit workflow.
Why use it?
It keeps release notes consistent and makes it easier to see what changed between software versions.

Skill for Claude Code

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

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

Reuse

Borrowing it

Nothing to install: this file belongs to u9401066/rootcause-mcp. 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/u9401066/rootcause-mcp/master/.claude/skills/changelog-updater/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/u9401066/rootcause-mcp

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/rootcause-mcp/changelog-updater/github.svg)](https://agentmods.dev/skills/u9401066/rootcause-mcp/changelog-updater)
Your own site
<a href="https://agentmods.dev/skills/u9401066/rootcause-mcp/changelog-updater"><img src="https://agentmods.dev/badge/skills/u9401066/rootcause-mcp/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/rootcause-mcp/changelog-updater"><img src="https://agentmods.dev/badge/skills/u9401066/rootcause-mcp/changelog-updater.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 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 100% copy Near-identical to another mod 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.01512
Opus 5 $0.00000 $0.00756
Sonnet 5 $0.00000 $0.00302
Haiku 4.5 $0.00000 $0.00151

Measured 10d ago against content hash 7e17b2a47f95, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, 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 10d 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

This is a copy

100% identical to changelog-updater — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.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. 10d 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/rootcause-mcp (0 stars, last pushed 8d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,512 tokens. A static security scan graded it A with 0 findings. It is 100% identical to changelog-updater, differing in 0 lines, and is treated as a copy.