원클릭으로
changelog
Generate changelog from commits since last release
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate changelog from commits since last release
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Generate a new React component with Mantine styling
Update documentation after implementing features or making changes
Run a quick architecture review via architect-reviewer agent
Generate mobile-specific React components with platform detection and safe areas
Run a quick security audit on recent changes or specific files
Generate a test file for a component, hook, or utility
SOC 직업 분류 기준
| name | changelog |
| description | Generate changelog from commits since last release |
Generates a formatted changelog from commits since the last version tag.
git describe --tags --abbrev=0
git log <last-tag>..HEAD --oneline
Parse commits by type (feat, fix, refactor, etc.)
Generate formatted changelog.
## [X.X.X] - YYYY-MM-DD
### ✨ Features
- feat: description (#PR)
### 🐛 Bug Fixes
- fix: description (#PR)
### ♻️ Refactoring
- refactor: description
### 📚 Documentation
- docs: description
### 🔧 Maintenance
- chore: description
## [0.1.0-alpha.2] - 2024-01-15
### ✨ Features
- feat: add task priority filtering
- feat: implement weekly recurrence for tasks
- feat: add Time Machine view for historical notes
### 🐛 Bug Fixes
- fix: dark mode calendar readability issue
- fix: daily note template not applying correctly
### ♻️ Refactoring
- refactor: simplify sync state machine
### 📚 Documentation
- docs: update getting started guide
- docs: add CI/CD documentation
### 🔧 Maintenance
- chore: update dependencies
- chore: configure ESLint rules
| Prefix | Category | Emoji |
|---|---|---|
| feat | Features | ✨ |
| fix | Bug Fixes | 🐛 |
| refactor | Refactoring | ♻️ |
| docs | Documentation | 📚 |
| chore | Maintenance | 🔧 |
| test | Testing | 🧪 |
| style | Styling | 💄 |
| perf | Performance | ⚡ |
/changelog
# Review the output
# Copy to release notes
/release minor
If maintaining a CHANGELOG.md file, prepend the generated content.
If a commit message contains BREAKING CHANGE: in the body, highlight it:
### ⚠️ Breaking Changes
- feat!: change API for task recurrence
- Migration: Update any code using `recurrence.pattern` to `recurrence.frequency`