一键导入
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 页面并帮你完成安装。
基于 SOC 职业分类
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
| 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`