Changelog generator
Skill ComeOnOliver/skillshub/skills/aiskillstore/marketplace/doyajin174/changelog-generator
๐ง The right skill, one API call. AI agent skills registry with token-efficient skill resolution. 5,000+ skills from 500+ top repos.
npx -y skills add ComeOnOliver/skillshub --skill changelog-generatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Generate user-friendly release notes from git commits. Use this when preparing releases, writing changelogs, or summarizing development progress.
The file declares its own license as MIT. That is the authorโs claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
3.3 KB, as published. Nobody here has run it
Changelog Generator
Git ์ปค๋ฐ์ ์ฌ์ฉ์ ์นํ์ ์ธ ๋ฆด๋ฆฌ์ฆ ๋ ธํธ๋ก ๋ณํํ๋ ์คํฌ์ ๋๋ค.
Workflow
Step 1: ์ปค๋ฐ ํ์คํ ๋ฆฌ ์์ง
# ์ต๊ทผ ๋ฆด๋ฆฌ์ฆ ์ดํ ์ปค๋ฐ
git log --oneline $(git describe --tags --abbrev=0)..HEAD
# ํน์ ๊ธฐ๊ฐ ์ปค๋ฐ
git log --oneline --since="2024-01-01"
# ์์ธ ์ ๋ณด ํฌํจ
git log --pretty=format:"%h - %s (%an, %ar)" --since="1 week ago"
Step 2: ์ปค๋ฐ ๋ถ๋ฅ
| Prefix | ์นดํ ๊ณ ๋ฆฌ | ์ค๋ช |
|---|---|---|
feat: | โจ New Features | ์๋ก์ด ๊ธฐ๋ฅ |
fix: | ๐ Bug Fixes | ๋ฒ๊ทธ ์์ |
perf: | โก Performance | ์ฑ๋ฅ ๊ฐ์ |
docs: | ๐ Documentation | ๋ฌธ์ ๋ณ๊ฒฝ |
refactor: | ๐ง Refactoring | ๋ฆฌํฉํ ๋ง |
test: | ๐งช Tests | ํ ์คํธ ์ถ๊ฐ/์์ |
chore: | ๐จ Chores | ๋น๋/์ค์ ๋ณ๊ฒฝ |
BREAKING: | ๐ฅ Breaking Changes | ํธํ์ฑ ๊นจ์ง |
Step 3: ์ฌ์ฉ์ ๊ด์ ์ผ๋ก ๋ณํ
๊ฐ๋ฐ์ ์ปค๋ฐ:
feat: implement JWT token refresh mechanism
fix: resolve race condition in order processing
์ฌ์ฉ์ ๋ฆด๋ฆฌ์ฆ ๋ ธํธ:
โจ ์๋ก์ด ๊ธฐ๋ฅ
- ์๋ ๋ก๊ทธ์ธ ๊ฐฑ์ ์ผ๋ก ๋ ์ค๋ ๋ก๊ทธ์ธ ์ํ ์ ์ง
๐ ๋ฒ๊ทธ ์์
- ์ฃผ๋ฌธ ์ฒ๋ฆฌ ์ค ๊ฐํ์ ์ค๋ฅ ์์
Output Format
Standard CHANGELOG.md
# Changelog
## [1.2.0] - 2024-12-22
### โจ New Features
- Feature A description
- Feature B description
### ๐ Bug Fixes
- Fixed issue X
- Resolved problem Y
### โก Performance
- Improved loading speed
### ๐ฅ Breaking Changes
- Changed API endpoint structure
GitHub Release Notes
## What's New
### Highlights
๐ **Feature A** - Brief exciting description
### All Changes
- feat: detailed change 1
- fix: detailed change 2
### Contributors
@user1, @user2
Examples
Example 1: ๋ฒ์ ๋ฆด๋ฆฌ์ฆ
User: v1.2.0 ๋ฆด๋ฆฌ์ฆ ๋
ธํธ ๋ง๋ค์ด์ค
Claude:
1. git log๋ก ์ด์ ํ๊ทธ ์ดํ ์ปค๋ฐ ์์ง
2. Conventional Commits ๊ธฐ์ค ๋ถ๋ฅ
3. ์ฌ์ฉ์ ๊ด์ ์ผ๋ก ๋ณํ
4. CHANGELOG.md ์
๋ฐ์ดํธ
Example 2: ์ฃผ๊ฐ ์ ๋ฐ์ดํธ
User: ์ด๋ฒ ์ฃผ ๊ฐ๋ฐ ๋ด์ฉ ์ ๋ฆฌํด์ค
Claude:
1. git log --since="1 week ago" ์คํ
2. ์ฃผ์ ๋ณ๊ฒฝ์ฌํญ ์์ฝ
3. ํ ๊ณต์ ์ฉ ๋ฌธ์ ์์ฑ
Automation
Pre-release Hook
#!/bin/bash
# .git/hooks/pre-tag
# ํ์ฌ ๋ฒ์ ๊ณผ ์ด์ ๋ฒ์ ์ฌ์ด ๋ณ๊ฒฝ์ฌํญ ์ถ์ถ
git log --oneline $(git describe --tags --abbrev=0 2>/dev/null)..HEAD > /tmp/changes.txt
echo "Changes since last release:"
cat /tmp/changes.txt
CI Integration
# .github/workflows/release.yml
- name: Generate Changelog
run: |
git log --oneline ${{ github.event.before }}..${{ github.sha }} > changes.txt
# Claude API๋ก ๋ฆด๋ฆฌ์ฆ ๋
ธํธ ์์ฑ
Best Practices
- Conventional Commits ์ฌ์ฉ:
type(scope): message - ์ฌ์ฉ์ ๊ด์ : ๊ธฐ์ ์ฉ์ด โ ์ฌ์ฉ์ ์ด์
- Breaking Changes ๊ฐ์กฐ: ๋ง์ด๊ทธ๋ ์ด์ ๊ฐ์ด๋ ํฌํจ
- ๊ฐ์ฌ ํ์: ๊ธฐ์ฌ์ ๋ฉ์