원클릭으로
changelog-generator
Generate user-friendly changelogs from git commits. Transforms technical commits into clear release notes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate user-friendly changelogs from git commits. Transforms technical commits into clear release notes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
MCP-first testing workflow for Xcode apps (iOS, iPadOS, macOS). Use when the user asks to build, test, run, or verify an Xcode project — including UI checks, smoke tests, regression tests, or simulator launches. Prefers Xcode MCP tools via mcpbridge; falls back to xcodebuild/simctl CLI when MCP is unavailable.
Look up Apple Developer Documentation (Swift, SwiftUI, HealthKit, UIKit, etc.) and WWDC session transcripts using the sosumi CLI tool. Use when working with Swift/iOS code and need to check API signatures, find documentation, or understand Apple frameworks.
Automate browser interactions using agent-browser CLI. Use for taking screenshots, testing deployed sites, checking mobile views, form testing, or browser automation tasks.
Request and perform code reviews. Guidelines for reviewing code quality, finding bugs, and ensuring best practices.
Database management with Prisma ORM. Use for migrations, schema management, seeding, and database queries.
Docker and Docker Compose commands for containerization. Use for building images, running containers, managing volumes, and orchestrating services.
| name | changelog-generator |
| description | Generate user-friendly changelogs from git commits. Transforms technical commits into clear release notes. |
| allowed-tools | Bash, Read, Edit |
| user-invocable | true |
Transform technical git commits into polished, user-friendly changelogs.
Create a changelog from commits since last release
Generate changelog for commits from the past week
Create release notes for version 2.5.0
Create changelog for commits between March 1 and March 15
Generate changelog for commits since v2.4.0
git log v1.0.0..HEAD --oneline
git log v1.0.0..HEAD --pretty=format:"%h %s" --no-merges
git log --since="1 week ago" --oneline
git log --since="2026-03-01" --until="2026-03-15" --oneline
git log --since="1 week ago" --pretty=format:"- %s (%h)" --no-merges
git shortlog -sn --since="1 month ago"
# Changelog
## [2.5.0] - 2026-03-15
### Added
- **Team Workspaces**: Create separate workspaces for different projects
- **Keyboard Shortcuts**: Press ? to see all available shortcuts
### Changed
- **Faster Sync**: Files now sync 2x faster across devices
- **Better Search**: Search now includes file contents
### Fixed
- Fixed issue where large images wouldn't upload
- Resolved timezone confusion in scheduled posts
### Security
- Updated dependencies to patch vulnerability CVE-2026-XXXX
# Updates - Week of March 15, 2026
## ✨ New Features
- **Team Workspaces**: Create separate workspaces for different
projects. Invite team members and keep everything organized.
## 🔧 Improvements
- **Faster Sync**: Files now sync 2x faster across devices
- **Better Search**: Search now includes file contents, not just titles
## 🐛 Fixes
- Fixed issue where large images wouldn't upload
- Resolved timezone confusion in scheduled posts
feat: → ✨ New Features / Added
fix: → 🐛 Bug Fixes / Fixed
perf: → ⚡ Performance / Changed
security: → 🔒 Security
docs: → 📚 Documentation (if user-facing)
chore: Internal maintenance
refactor: Code restructuring
test: Test changes
ci: CI/CD changes
style: Code formatting
build: Build system
# Install
cargo install git-cliff
# Generate changelog
git cliff --output CHANGELOG.md
git cliff --latest --strip header # Only latest version
git cliff -t v1.0.0..v2.0.0 # Between tags
[changelog]
header = "# Changelog\n\n"
body = """
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
{% for commit in commits %}
- {{ commit.message | upper_first }} ({{ commit.id | truncate(length=7, end="") }})\
{% endfor %}
{% endfor %}
"""
trim = true
[git]
conventional_commits = true
filter_unconventional = true
commit_parsers = [
{ message = "^feat", group = "Features" },
{ message = "^fix", group = "Bug Fixes" },
{ message = "^perf", group = "Performance" },
{ message = "^doc", group = "Documentation" },
{ message = "^refactor", skip = true },
{ message = "^chore", skip = true },
{ message = "^test", skip = true },
]
# Generate release notes from PRs
gh release create v1.0.0 --generate-notes
# View generated notes
gh release view v1.0.0
Write for users, not developers
Lead with benefits
Be specific about fixes
Group related changes
Include context when helpful
What's New in v2.5:
• Team Workspaces - Collaborate with your team in shared spaces
• Keyboard Shortcuts - Navigate faster with hotkeys (press ? for help)
• Performance - 2x faster sync and improved search
Bug Fixes:
• Fixed image upload issues
• Corrected timezone display
## What's New This Week
Hey there! Here's what we shipped:
**🎉 Team Workspaces**
You asked, we delivered! Create separate workspaces for different projects and invite team members.
**⚡ Speed Improvements**
Files now sync 2x faster. Search is smarter too - it now looks inside your files.
**🐛 Bug Squashing**
Fixed that annoying image upload issue and sorted out timezone confusion.
Questions? Reply to this email!
Inspired by ComposioHQ/awesome-claude-skills