Claude Skill

update-changelog

Update the Unreleased section of CHANGELOG.md based on current changes. No-op if CHANGELOG.md does not exist. Use when the user asks to "update changelog", "add to changelog", "update the changelog", "changelog entry", "add changelog entry", or "log this change".

LLM Mart · 0 points · 19 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download tobihagemann-turbo-claude_skills_update-changelog-b903a85.zip · 0 KB
Part of tobihagemann/turbo — 147 skills

Install

skills CLI npx skills add https://github.com/tobihagemann/turbo/tree/main/claude/skills/update-changelog
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install tobihagemann-turbo@llmmart
Git git clone https://github.com/tobihagemann/turbo.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole tobihagemann/turbo collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Update Changelog

Update the Unreleased section of the changelog based on the current changes.

Step 1: Run /changelog-rules Skill

Run the /changelog-rules skill to load shared changelog conventions.

Step 2: Check for Changelog

Use git rev-parse --show-toplevel to find the repository root. Look for the changelog file per /changelog-rules. If it does not exist, skip this skill. Do not create it.

Step 3: Analyze the Changes

Determine what changed:

  • Read git diff --cached for staged changes
  • If nothing is staged, read git diff for unstaged changes
  • Use the conversation context for the intent behind the changes

Step 4: Assess Changelog-Worthiness

Apply the /changelog-rules changelog-worthiness and net-delta criteria. Skip fixes to code introduced by the same branch or PR.

If no changes are changelog-worthy, skip this skill.

Step 5: Check Existing Unreleased Entries

Read the current Unreleased section of the changelog. Look for entries that relate to the same feature or fix. This prevents duplicates across multiple commits for the same body of work.

  • If an existing entry covers the same change, update its wording only if the current commit meaningfully extends or refines the feature. Do not add a duplicate entry.

Step 6: Update the Unreleased Section

Add or update entries in the Unreleased section following /changelog-rules conventions. Create subsection headers as needed (e.g., ### Added).

Then use the TaskList tool and proceed to any remaining task.

Rules

  • Never modify released version sections. Only the Unreleased section is in scope.
  • Do not stage the modified file. Staging is handled separately.
Files (turbo)
  • SKILL.md 2 KB
    ---
    name: update-changelog
    description: "Update the Unreleased section of CHANGELOG.md based on current changes. No-op if CHANGELOG.md does not exist. Use when the user asks to \"update changelog\", \"add to changelog\", \"update the changelog\", \"changelog entry\", \"add changelog entry\", or \"log this change\"."
    ---
    
    # Update Changelog
    
    Update the Unreleased section of the changelog based on the current changes.
    
    ## Step 1: Run `/changelog-rules` Skill
    
    Run the `/changelog-rules` skill to load shared changelog conventions.
    
    ## Step 2: Check for Changelog
    
    Use `git rev-parse --show-toplevel` to find the repository root. Look for the changelog file per `/changelog-rules`. If it does not exist, skip this skill. Do not create it.
    
    ## Step 3: Analyze the Changes
    
    Determine what changed:
    
    - Read `git diff --cached` for staged changes
    - If nothing is staged, read `git diff` for unstaged changes
    - Use the conversation context for the intent behind the changes
    
    ## Step 4: Assess Changelog-Worthiness
    
    Apply the `/changelog-rules` changelog-worthiness and net-delta criteria. Skip fixes to code introduced by the same branch or PR.
    
    If no changes are changelog-worthy, skip this skill.
    
    ## Step 5: Check Existing Unreleased Entries
    
    Read the current Unreleased section of the changelog. Look for entries that relate to the same feature or fix. This prevents duplicates across multiple commits for the same body of work.
    
    - If an existing entry covers the same change, update its wording only if the current commit meaningfully extends or refines the feature. Do not add a duplicate entry.
    
    ## Step 6: Update the Unreleased Section
    
    Add or update entries in the Unreleased section following `/changelog-rules` conventions. Create subsection headers as needed (e.g., `### Added`).
    
    Then use the TaskList tool and proceed to any remaining task.
    
    ## Rules
    
    - Never modify released version sections. Only the Unreleased section is in scope.
    - Do not stage the modified file. Staging is handled separately.
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related