Claude-skill-registry changelog

Set up git-cliff for automated changelog generation. Use `/changelog init` to initialize in a new project.

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/changelog" ~/.claude/skills/majiayu000-claude-skill-registry-changelog-ed3d18 && rm -rf "$T"
manifest: skills/data/changelog/SKILL.md
source content

Changelog Skill

Manage automated changelog generation using git-cliff for ZeroAE projects.

Commands

CommandDescription
/changelog init
Set up git-cliff in a new project

init

Set up git-cliff configuration and GitHub Actions workflow.

Process

  1. Check Current State
ls cliff.toml 2>/dev/null
ls .github/workflows/release.yml 2>/dev/null
  1. Create cliff.toml

If missing, create

cliff.toml
in project root using cliff-config.toml.

  1. Update Release Workflow

If

.github/workflows/release.yml
exists, add the changelog generation step from workflow-snippet.yml.

If no release workflow exists, inform the user they need to create one first.

  1. Verify Setup
git cliff --unreleased

Output

Report what was created/updated and any manual steps needed.

Reference Files