بنقرة واحدة
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`