mc-changelog-update

Solid

Add a properly-formatted entry to a project's CHANGELOG.md following the project's existing conventions. TRIGGER when the user says "update the changelog", "add to changelog", "log this change", or as part of a document-and-commit flow when CHANGELOG.md is one of the artifacts that needs to change.

AI & Automation 9 stars 1 forks Updated today MIT

Install

View on GitHub

Quality Score: 79/100

Stars 20%
33
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# CHANGELOG.md update — guided Most Clayrune-managed projects keep a CHANGELOG.md in the project root. This skill walks through adding an entry that matches the project's existing format. ## Steps ### 1. Read the current CHANGELOG.md ```bash head -120 CHANGELOG.md ``` Pattern-match the existing style: - **Date stamp format** — `[2026-05-10]`, `## 2026-05-10`, `[v1.4.2 — 2026-05-10]`, etc. - **Section style** — flat bullets, or grouped under `### New`, `### Changed`, `### Fixed`? - **Voice** — past tense ("Added X") or imperative ("Add X")? - **Detail level** — one-line bullets, or paragraphs with Why/Rollback subsections? ### 2. Compose the entry Match the style exactly. Don't introduce a new format. Common structures: **Style A — flat bullets:** ```markdown ## [2026-05-10] — Short headline - Added foo - Fixed bar in baz - Removed deprecated quux ``` **Style B — grouped:** ```markdown ## [2026-05-10] — Short headline ### Added - New foo widget for X ### Fixed - bar no longer crashes when Y ### Changed - baz default flipped to true ``` **Style C — narrative with Why/Rollback:** ```markdown ## [2026-05-10] — Short headline - **Change:** One-sentence description of what changed. - **Why:** The motivation — incident, requirement, user request. - **Rollback:** How to revert if needed. ``` ### 3. Insert at the top (most projects) — or at the bottom (rarely) Most CHANGELOG.md files have newest entries at the top. Confirm by checking the existing first few entries: ...

Details

Author
ronle
Repository
ronle/clayrune
Created
5 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category