Agent skill
changelog-generator
Generate user-friendly release notes from git commits. Use this when preparing releases, writing changelogs, or summarizing development progress.
Install this agent skill to your Project
npx add-skill https://github.com/aiskillstore/marketplace/tree/main/skills/doyajin174/changelog-generator
Metadata
Additional technical details for this skill
- author
- ComposioHQ
- version
- 1.0
SKILL.md
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 강조: 마이그레이션 가이드 포함
- 감사 표시: 기여자 멘션
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
perigon-backend
Perigon ASP.NET Core + EF Core + Aspire conventions
perigon-agent
Pointers for Copilot/agents to apply Perigon conventions
perigon-angular
Angular 21+ standalone/Material/signal conventions for Perigon WebApp
fastapi-mastery
Comprehensive FastAPI development skill covering REST API creation, routing, request/response handling, validation, authentication, database integration, middleware, and deployment. Use when working with FastAPI projects, building APIs, implementing CRUD operations, setting up authentication/authorization, integrating databases (SQL/NoSQL), adding middleware, handling WebSockets, or deploying FastAPI applications. Triggered by requests involving .py files with FastAPI code, API endpoint creation, Pydantic models, or FastAPI-specific features.
context7-efficient
Token-efficient library documentation fetcher using Context7 MCP with 86.8% token savings through intelligent shell pipeline filtering. Fetches code examples, API references, and best practices for JavaScript, Python, Go, Rust, and other libraries. Use when users ask about library documentation, need code examples, want API usage patterns, are learning a new framework, need syntax reference, or troubleshooting with library-specific information. Triggers include questions like "Show me React hooks", "How do I use Prisma", "What's the Next.js routing syntax", or any request for library/framework documentation.
browser-use
Browser automation using Playwright MCP. Navigate websites, fill forms, click elements, take screenshots, and extract data. Use when tasks require web browsing, form submission, web scraping, UI testing, or any browser interaction.
Didn't find tool you were looking for?