Conversation
Add command templates for commit messages, PR bodies, and branch testing to standardize workflows. Update .gitignore to track .cursor/commands while keeping .cursor/skills ignored.
Overall package sizeSelf size: 4.46 MB Dependency sizes| name | version | self size | total size | |------|---------|-----------|------------| | import-in-the-middle | 2.0.3 | 76.87 kB | 808.03 kB | | dc-polyfill | 0.1.10 | 26.73 kB | 26.73 kB |🤖 This report was automatically generated by heaviest-objects-in-the-universe |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #7378 +/- ##
=======================================
Coverage 86.16% 86.16%
=======================================
Files 515 515
Lines 22245 22245
=======================================
Hits 19168 19168
Misses 3077 3077 Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
BenchmarksBenchmark execution time: 2026-01-29 12:40:48 Comparing candidate commit 76fb0ef in PR branch Found 0 performance improvements and 0 performance regressions! Performance is the same for 229 metrics, 31 unstable metrics. |
BridgeAR
left a comment
There was a problem hiding this comment.
LGTM
I believe the wording could partially still be improved. I guess we can do that a bit later though and this is a good starting point for commands!
|
@BridgeAR yeah, these are what have worked for me (an iterative process over the past few weeks). But if we find that they are not optimal in some way or think we can otherwise reduce the token count if it's too large (I don't think these are wasteful), then by all means 👍 |
Add command templates for commit messages, PR bodies, and branch testing to standardize workflows. Update .gitignore to track .cursor/commands while keeping .cursor/skills ignored.
Add command templates for commit messages, PR bodies, and branch testing to standardize workflows. Update .gitignore to track .cursor/commands while keeping .cursor/skills ignored.
Add command templates for commit messages, PR bodies, and branch testing to standardize workflows. Update .gitignore to track .cursor/commands while keeping .cursor/skills ignored.

What does this PR do?
Adds three Cursor command templates to standardize common workflows and updates
.gitignoreto track the.cursor/commands/directory while keeping.cursor/skills/ignored.The three commands added are:
/commit-message- Generates semantic commit messages following the 50/72 character formatting rules based on the currently staged changes/pr-body- Creates PR descriptions using the repository's PR template with proper formatting based on the changes in the current branch/test-branch- Runs all relevant tests for changes in the current branch, handling both unit and integration tests appropriatelyMotivation
These command templates help ensure consistent formatting and quality when creating commit messages and PR descriptions, and provide a standardized and quick approach to running tests for branch changes (so it's easier to test before pushing).