Claude-skill-registry generate-changelog

Generate changelog entries from archived tickets grouped by category.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/generate-changelog" ~/.claude/skills/majiayu000-claude-skill-registry-generate-changelog-d329c9 && rm -rf "$T"
manifest: skills/data/generate-changelog/SKILL.md
source content

Changelog Generation

Generate changelog entries from archived tickets for a branch.

When to Use

Use this skill to generate formatted changelog entries from archived tickets. The entries are grouped by category (Added, Changed, Removed) and formatted with links to commits and tickets.

Instructions

Run the bundled script to generate changelog entries:

bash .claude/skills/generate-changelog/sh/generate.sh <branch-name> <repo-url>

The script outputs formatted markdown that can be inserted into CHANGELOG.md.

Output Format

### Added

- Title ([hash](commit-url)) - [ticket](ticket-path)

### Changed

- Title ([hash](commit-url)) - [ticket](ticket-path)

### Removed

- Title ([hash](commit-url)) - [ticket](ticket-path)

Only categories with entries are included.

Entry Format

Each entry includes:

  • Title: H1 heading from ticket file
  • hash: Short commit hash linking to GitHub commit
  • ticket: Relative path to archived ticket file