{"id":"c9888829-70a5-40f7-b7ff-d7e044d3e62f","shortId":"6Qks7b","kind":"skill","title":"commit","tagline":"ALWAYS use this skill when committing code changes — never commit directly without it. Creates commits following Sentry conventions with proper conventional commit format and issue references. Trigger on any commit, git commit, save changes, or commit message task.","description":"# Sentry Commit Messages\n\nFollow these conventions when creating commits for Sentry projects.\n\n## When to Use\n- The user asks to commit code, prepare a commit message, or save changes in git.\n- You need Sentry-style commit formatting with conventional commit structure and issue references.\n- The task requires enforcing branch safety before committing, especially avoiding direct commits on `main` or `master`.\n\n## Prerequisites\n\nBefore committing, always check the current branch:\n\n```bash\ngit branch --show-current\n```\n\n**If you're on `main` or `master`, you MUST create a feature branch first** — unless the user explicitly asked to commit to main. Do not ask the user whether to create a branch; just proceed with branch creation. The `create-branch` skill will still propose a branch name for the user to confirm.\n\nUse the `create-branch` skill to create the branch. After `create-branch` completes, verify the current branch has changed before proceeding:\n\n```bash\ngit branch --show-current\n```\n\nIf still on `main` or `master` (e.g., the user aborted branch creation), stop — do not commit.\n\n## Format\n\n```\n<type>(<scope>): <subject>\n\n<body>\n\n<footer>\n```\n\nThe header is required. Scope is optional. All lines must stay under 100 characters.\n\n## Commit Types\n\n| Type | Purpose |\n|------|---------|\n| `feat` | New feature |\n| `fix` | Bug fix |\n| `ref` | Refactoring (no behavior change) |\n| `perf` | Performance improvement |\n| `docs` | Documentation only |\n| `test` | Test additions or corrections |\n| `build` | Build system or dependencies |\n| `ci` | CI configuration |\n| `chore` | Maintenance tasks |\n| `style` | Code formatting (no logic change) |\n| `meta` | Repository metadata |\n| `license` | License changes |\n\n## Subject Line Rules\n\n- Use imperative, present tense: \"Add feature\" not \"Added feature\"\n- Capitalize the first letter\n- No period at the end\n- Maximum 70 characters\n\n## Body Guidelines\n\n- Explain **what** and **why**, not how\n- Use imperative mood and present tense\n- Include motivation for the change\n- Contrast with previous behavior when relevant\n\n## Footer: Issue References\n\nReference issues in the footer using these patterns:\n\n```\nFixes GH-1234\nFixes #1234\nFixes SENTRY-1234\nRefs LINEAR-ABC-123\n```\n\n- `Fixes` closes the issue when merged\n- `Refs` links without closing\n\n## AI-Generated Changes\n\nWhen changes were primarily generated by a coding agent (like Claude Code), include the Co-Authored-By attribution in the commit footer:\n\n```\nCo-Authored-By: Claude <noreply@anthropic.com>\n```\n\nThis is the only indicator of AI involvement that should appear in commits. Do not add phrases like \"Generated by AI\", \"Written with Claude\", or similar markers in the subject, body, or anywhere else in the commit message.\n\n## Examples\n\n### Simple fix\n\n```\nfix(api): Handle null response in user endpoint\n\nThe user API could return null for deleted accounts, causing a crash\nin the dashboard. Add null check before accessing user properties.\n\nFixes SENTRY-5678\nCo-Authored-By: Claude <noreply@anthropic.com>\n```\n\n### Feature with scope\n\n```\nfeat(alerts): Add Slack thread replies for alert updates\n\nWhen an alert is updated or resolved, post a reply to the original\nSlack thread instead of creating a new message. This keeps related\nnotifications grouped together.\n\nRefs GH-1234\n```\n\n### Refactor\n\n```\nref: Extract common validation logic to shared module\n\nMove duplicate validation code from three endpoints into a shared\nvalidator class. No behavior change.\n```\n\n### Breaking change\n\n```\nfeat(api)!: Remove deprecated v1 endpoints\n\nRemove all v1 API endpoints that were deprecated in version 23.1.\nClients should migrate to v2 endpoints.\n\nBREAKING CHANGE: v1 endpoints no longer available\nFixes SENTRY-9999\n```\n\n## Revert Format\n\n```\nrevert: feat(api): Add new endpoint\n\nThis reverts commit abc123def456.\n\nReason: Caused performance regression in production.\n```\n\n## Principles\n\n- Each commit should be a single, stable change\n- Commits should be independently reviewable\n- The repository should be in a working state after each commit\n\n## References\n\n- [Sentry Commit Messages](https://develop.sentry.dev/engineering-practices/commit-messages/)\n\n## Limitations\n- Use this skill only when the task clearly matches the scope described above.\n- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.\n- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.","tags":["commit","antigravity","awesome","skills","sickn33","agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows","antigravity-skills"],"capabilities":["skill","source-sickn33","skill-commit","topic-agent-skills","topic-agentic-skills","topic-ai-agent-skills","topic-ai-agents","topic-ai-coding","topic-ai-workflows","topic-antigravity","topic-antigravity-skills","topic-claude-code","topic-claude-code-skills","topic-codex-cli","topic-codex-skills"],"categories":["antigravity-awesome-skills"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/sickn33/antigravity-awesome-skills/commit","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add sickn33/antigravity-awesome-skills","source_repo":"https://github.com/sickn33/antigravity-awesome-skills","install_from":"skills.sh"}},"qualityScore":"0.700","qualityRationale":"deterministic score 0.70 from registry signals: · indexed on github topic:agent-skills · 34882 github stars · SKILL.md body (4,489 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-24T12:50:48.848Z","embedding":null,"createdAt":"2026-04-18T21:34:48.744Z","updatedAt":"2026-04-24T12:50:48.848Z","lastSeenAt":"2026-04-24T12:50:48.848Z","tsv":"'-1234':339,344,514 '-5678':466 '-9999':573 '/engineering-practices/commit-messages/)':623 '100':226 '123':349 '1234':341 '23.1':557 '70':299 'abc':348 'abc123def456':585 'abort':206 'access':461 'account':450 'ad':287 'add':284,408,457,478,579 'addit':251 'agent':372 'ai':361,399,413 'ai-gener':360 'alert':477,483,487 'alway':2,103 'anywher':425 'api':435,444,542,550,578 'appear':403 'ask':57,132,139,657 'attribut':382 'author':380,389,469 'avail':570 'avoid':93 'bash':108,191 'behavior':241,323,537 'bodi':301,423 'boundari':665 'branch':88,107,110,126,146,150,155,161,172,177,181,186,193,207 'break':539,564 'bug':236 'build':254,255 'capit':289 'caus':451,587 'chang':9,35,67,188,242,270,276,319,363,365,538,540,565,600 'charact':227,300 'check':104,459 'chore':262 'ci':259,260 'clarif':659 'class':535 'claud':374,391,416,471 'clear':632 'client':558 'close':351,359 'co':379,388,468 'co-authored-bi':378,387,467 'code':8,60,266,371,375,527 'commit':1,7,11,16,23,31,33,37,41,48,59,63,75,79,91,95,102,134,212,228,385,405,429,584,594,601,616,619 'common':518 'complet':182 'configur':261 'confirm':167 'contrast':320 'convent':19,22,45,78 'correct':253 'could':445 'crash':453 'creat':15,47,123,144,154,171,175,180,502 'create-branch':153,170,179 'creation':151,208 'criteria':668 'current':106,113,185,196 'dashboard':456 'delet':449 'depend':258 'deprec':544,554 'describ':636 'develop.sentry.dev':622 'develop.sentry.dev/engineering-practices/commit-messages/)':621 'direct':12,94 'doc':246 'document':247 'duplic':525 'e.g':203 'els':426 'end':297 'endpoint':441,530,546,551,563,567,581 'enforc':87 'environ':648 'environment-specif':647 'especi':92 'exampl':431 'expert':653 'explain':303 'explicit':131 'extract':517 'feat':232,476,541,577 'featur':125,234,285,288,473 'first':127,291 'fix':235,237,337,340,342,350,433,434,464,571 'follow':17,43 'footer':326,333,386 'format':24,76,213,267,575 'generat':362,368,411 'gh':338,513 'git':32,69,109,192 'group':510 'guidelin':302 'handl':436 'header':215 'imper':281,310 'improv':245 'includ':315,376 'independ':604 'indic':397 'input':662 'instead':500 'involv':400 'issu':26,82,327,330,353 'keep':507 'letter':292 'licens':274,275 'like':373,410 'limit':624 'line':222,278 'linear':347 'linear-abc':346 'link':357 'logic':269,520 'longer':569 'main':97,118,136,200 'mainten':263 'marker':419 'master':99,120,202 'match':633 'maximum':298 'merg':355 'messag':38,42,64,430,505,620 'meta':271 'metadata':273 'migrat':560 'miss':670 'modul':523 'mood':311 'motiv':316 'move':524 'must':122,223 'name':162 'need':71 'never':10 'new':233,504,580 'noreply@anthropic.com':392,472 'notif':509 'null':437,447,458 'option':220 'origin':497 'output':642 'pattern':336 'perf':243 'perform':244,588 'period':294 'permiss':663 'phrase':409 'post':492 'prepar':61 'prerequisit':100 'present':282,313 'previous':322 'primarili':367 'principl':592 'proceed':148,190 'product':591 'project':51 'proper':21 'properti':463 'propos':159 'purpos':231 're':116 'reason':586 'ref':238,345,356,512,516 'refactor':239,515 'refer':27,83,328,329,617 'regress':589 'relat':508 'relev':325 'remov':543,547 'repli':481,494 'repositori':272,607 'requir':86,217,661 'resolv':491 'respons':438 'return':446 'revert':574,576,583 'review':605,654 'rule':279 'safeti':89,664 'save':34,66 'scope':218,475,635 'sentri':18,40,50,73,343,465,572,618 'sentry-styl':72 'share':522,533 'show':112,195 'show-curr':111,194 'similar':418 'simpl':432 'singl':598 'skill':5,156,173,627 'skill-commit' 'slack':479,498 'source-sickn33' 'specif':649 'stabl':599 'state':613 'stay':224 'still':158,198 'stop':209,655 'structur':80 'style':74,265 'subject':277,422 'substitut':645 'success':667 'system':256 'task':39,85,264,631 'tens':283,314 'test':249,250,651 'thread':480,499 'three':529 'togeth':511 'topic-agent-skills' 'topic-agentic-skills' 'topic-ai-agent-skills' 'topic-ai-agents' 'topic-ai-coding' 'topic-ai-workflows' 'topic-antigravity' 'topic-antigravity-skills' 'topic-claude-code' 'topic-claude-code-skills' 'topic-codex-cli' 'topic-codex-skills' 'treat':640 'trigger':28 'type':229,230 'unless':128 'updat':484,489 'use':3,54,168,280,309,334,625 'user':56,130,141,165,205,440,443,462 'v1':545,549,566 'v2':562 'valid':519,526,534,650 'verifi':183 'version':556 'whether':142 'without':13,358 'work':612 'written':414","prices":[{"id":"62a7d217-632b-4ba2-b13f-3a136a5cbd39","listingId":"c9888829-70a5-40f7-b7ff-d7e044d3e62f","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"sickn33","category":"antigravity-awesome-skills","install_from":"skills.sh"},"createdAt":"2026-04-18T21:34:48.744Z"}],"sources":[{"listingId":"c9888829-70a5-40f7-b7ff-d7e044d3e62f","source":"github","sourceId":"sickn33/antigravity-awesome-skills/commit","sourceUrl":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/commit","isPrimary":false,"firstSeenAt":"2026-04-18T21:34:48.744Z","lastSeenAt":"2026-04-24T12:50:48.848Z"}],"details":{"listingId":"c9888829-70a5-40f7-b7ff-d7e044d3e62f","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"sickn33","slug":"commit","github":{"repo":"sickn33/antigravity-awesome-skills","stars":34882,"topics":["agent-skills","agentic-skills","ai-agent-skills","ai-agents","ai-coding","ai-workflows","antigravity","antigravity-skills","claude-code","claude-code-skills","codex-cli","codex-skills","cursor","cursor-skills","developer-tools","gemini-cli","gemini-skills","kiro","mcp","skill-library"],"license":"mit","html_url":"https://github.com/sickn33/antigravity-awesome-skills","pushed_at":"2026-04-24T06:41:17Z","description":"Installable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.","skill_md_sha":"a2fea803913f7570f84d6c53fd5413ba509b9510","skill_md_path":"skills/commit/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/commit"},"layout":"multi","source":"github","category":"antigravity-awesome-skills","frontmatter":{"name":"commit","description":"ALWAYS use this skill when committing code changes — never commit directly without it. Creates commits following Sentry conventions with proper conventional commit format and issue references. Trigger on any commit, git commit, save changes, or commit message task."},"skills_sh_url":"https://skills.sh/sickn33/antigravity-awesome-skills/commit"},"updatedAt":"2026-04-24T12:50:48.848Z"}}