Git workflow and commit conventions
This skill inherits all available tools. When active, it can use any tool Claude has access to.
<type>(<scope>): <subject>
<body>
<footer>
| Type | Description |
|---|---|
feat | New feature |
fix | Bug fix |
docs | Documentation only |
style | Formatting, no code change |
refactor | Code change, no feature/fix |
perf | Performance improvement |
test | Adding/fixing tests |
chore | Maintenance tasks |
feat(orders): add batch order processing
Implements bulk order creation endpoint for high-volume channels.
Supports up to 100 orders per request with validation.
Closes #123
fix(beam): handle null variant mapping
Prevents NPE when Shopify returns product without variants.
Adds null check before accessing variant list.
<type>/<ticket>-<short-description>
feat/BEAM-123-batch-product-sync
fix/PRISM-456-checkout-validation
chore/INF-789-update-dependencies
feat/ - New featuresfix/ - Bug fixeschore/ - Maintenancedocs/ - Documentationrefactor/ - Code refactoringtest/ - Test additions[TICKET-123] Brief description of change
## Summary
[1-3 sentences describing what this PR does]
## Changes
- Change 1
- Change 2
## Testing
- [ ] Unit tests added/updated
- [ ] Integration tests pass
- [ ] Manual testing completed
## Screenshots (if UI)
[Add screenshots for UI changes]
## Related Issues
Closes #123
git fetch origin maingit rebase origin/maingit rebase --continuegit push --force-with-lease