Claude-code-blueprint changelog
Generate a changelog from git history since a tag, date, or commit
install
source · Clone the upstream repo
git clone https://github.com/faizkhairi/claude-code-blueprint
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/faizkhairi/claude-code-blueprint "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/changelog" ~/.claude/skills/faizkhairi-claude-code-blueprint-changelog && rm -rf "$T"
manifest:
skills/changelog/SKILL.mdsource content
Generate changelog from $ARGUMENTS:
- Parse arguments: Extract the starting point (tag, date, or commit hash) and optional repo path (default: current directory)
- Read git log: Run
since the specified pointgit log --oneline --no-merges - Categorize commits by conventional commit prefixes:
- Features (feat:, add:, new:)
- Bug Fixes (fix:, bugfix:)
- Documentation (docs:)
- Performance (perf:)
- Refactoring (refactor:)
- Other (chore:, ci:, test:, style:, build:)
- If no conventional commits found: Analyze commit messages and categorize by intent
- Format output:
[version/date range]
Features
- Description (commit-hash)
Bug Fixes
- Description (commit-hash)
Other Changes
- Description (commit-hash)