| name | commit-message-generator |
| description | Generates standardized and meaningful commit messages following best practices. Use when writing or improving commit messages. |
Instructions
When generating a commit message:
- Understand the purpose of the changes
- Identify the main impact
- Use concise and clear language
- Prefer imperative tone (e.g., "Add", "Fix", "Update")
- Optionally include additional details
Output Format
type(scope): short description
- bullet points explaining changes (optional)
Examples
feat(auth): add login with Google
fix(api): handle null response in user endpoint
refactor(ui): simplify navbar component