| name | Generating Commit Messages |
| description | Stages all changes and generates clear commit messages following conventional commit format. Use when ready to commit your work. |
Generating Commit Messages
Instructions
- Run
git add .to stage all changes (if not already staged) - Run
git diff --stagedto see changes - I'll suggest a single-sentence commit message under 50 characters
- Use conventional commit format (feat:, fix:, docs:, style:, refactor:, test:, chore:)
- Ensure clarity and context for future reference
Best practices
- Use present tense
- Explain what and why, not how