Loading...
Loading...
A skill for writing Git commit messages. It follows rules combining Conventional Commits and Gitmoji to maintain a consistent commit history.
npx skill4agent add datamktkorea/agent-skills git-commitgit diff --staged| Gitmoji | Code | Type | Description |
|---|---|---|---|
| ✨ | | | Add a new feature |
| 🐛 | | | Fix a bug |
| 📝 | | | Add or update documentation |
| 🎨 | | | Code formatting, structural improvement |
| ♻️ | | | Code refactoring |
| ✅ | | | Add or update test code |
| 🔧 | | | Update build, config files, etc. |
| 🚀 | | | Improve performance |
| 🔖 | | | Version release |
Always check this: gitmoji | An emoji guide for your commit messages
<gitmoji> <type>(<scope>): <subject>
<body>
<footer>(api)(chat)(auth)Closes #123✨ feat(auth): add password reset via email
- Implemented a new endpoint `/auth/request-password-reset` that sends a secure, time-limited token to the user's email.
- Added a corresponding service to handle token generation and email dispatch.
Closes #78BREAKING CHANGE: