skills/doyajin174/changelog-generator/SKILL.md
Generate user-friendly release notes from git commits. Use this when preparing releases, writing changelogs, or summarizing development progress.
npx skillsauth add aiskillstore/marketplace changelog-generatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Git 커밋을 사용자 친화적인 릴리즈 노트로 변환하는 스킬입니다.
# 최근 릴리즈 이후 커밋
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"
| Prefix | 카테고리 | 설명 |
|--------|----------|------|
| feat: | ✨ New Features | 새로운 기능 |
| fix: | 🐛 Bug Fixes | 버그 수정 |
| perf: | ⚡ Performance | 성능 개선 |
| docs: | 📚 Documentation | 문서 변경 |
| refactor: | 🔧 Refactoring | 리팩토링 |
| test: | 🧪 Tests | 테스트 추가/수정 |
| chore: | 🔨 Chores | 빌드/설정 변경 |
| BREAKING: | 💥 Breaking Changes | 호환성 깨짐 |
개발자 커밋:
feat: implement JWT token refresh mechanism
fix: resolve race condition in order processing
사용자 릴리즈 노트:
✨ 새로운 기능
- 자동 로그인 갱신으로 더 오래 로그인 상태 유지
🐛 버그 수정
- 주문 처리 중 간헐적 오류 수정
# 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
## What's New
### Highlights
🎉 **Feature A** - Brief exciting description
### All Changes
- feat: detailed change 1
- fix: detailed change 2
### Contributors
@user1, @user2
User: v1.2.0 릴리즈 노트 만들어줘
Claude:
1. git log로 이전 태그 이후 커밋 수집
2. Conventional Commits 기준 분류
3. 사용자 관점으로 변환
4. CHANGELOG.md 업데이트
User: 이번 주 개발 내용 정리해줘
Claude:
1. git log --since="1 week ago" 실행
2. 주요 변경사항 요약
3. 팀 공유용 문서 생성
#!/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
# .github/workflows/release.yml
- name: Generate Changelog
run: |
git log --oneline ${{ github.event.before }}..${{ github.sha }} > changes.txt
# Claude API로 릴리즈 노트 생성
type(scope): messagedevelopment
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.