PR descriptions and commit messages convention for our PRs
See how a minor change to your commit message style can make you a better programmer.
Format: *<type>: <subject>*
Type:
feat: add hat wobble
^--^ ^------------^
| |
| +-> Summary in the present tense.
|
+-------> Type: chore, docs, feat, fix, refactor, style, or test.
# PR Title
## Context and Problem Statement
[Describe the issue or background that led to this change. What problem are we solving?]
## Solution
[Explain the solution implemented, focusing on the approach and key technical decisions]
Key changes:
- [Bullet points highlighting the main changes]
- [Focus on what changed, not how it changed]
- [Include architectural decisions if relevant]
## Testing
- [ ] [Specific test case 1]
- [ ] [Specific test case 2]
- [ ] [Edge cases tested]
- [ ] [Regression testing performed]
## Impact
[Describe the user-facing impact and any potential side effects or considerations]