Loading...
Loading...
Generate high-quality git commit messages following Conventional Commits and Chris Beams' Seven Rules. Infers WHY from context and provides clear guidance on structure, scope, and body content.
npx skill4agent add lucianghinda/agentic-skills commit-messagefeatfixdocsstylerefactorperftestbuildcichorerevert(api)(ui)(auth)<type>(<scope>)Fixes SENTRY-123Closes #456BREAKING CHANGE: API endpoints now require authCo-Authored-By: <AI Name> <email><type>(<scope>): <subject>
<body>
<footer>| Type | Purpose |
|---|---|
| New feature |
| Bug fix |
| Refactoring (no behavior change) |
| Performance improvement |
| Documentation only |
| Test additions or corrections |
| Build system or dependencies |
| CI configuration |
| Maintenance tasks |
| Code formatting (no logic change) |
| Repository metadata |
| License changes |
Fixes SENTRY-123Fixes #123Refs GH-123Refs LINEAR-ABC-123Co-Authored-By: <AI Name> <email>fix(auth): Handle null response in user endpoint
The API could return null for deleted accounts, causing a crash.
Add null check before accessing user properties.
Fixes SENTRY-5678feat(alerts): Add Slack thread replies for alert updates
When an alert is updated or resolved, post a reply to the
original Slack thread. This keeps related notifications grouped together.
Refs GH-1234ref(validation): Extract common validation logic to shared module
Move duplicate validation code from three endpoints into a shared
validator class. No behavior change.feat(api)!: Remove deprecated v1 endpoints
Remove all v1 API endpoints that were deprecated in version 23.1.
Clients should migrate to v2 endpoints.
BREAKING CHANGE: v1 endpoints no longer available
Fixes SENTRY-9999