/commit
Use for every request to commit changes or draft a commit message. Creates Sentry-style conventional commits with issue references.
One skill from sentry-skills.
shell
$ npx -y skills add getsentry/skills --skill commit --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/commit
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use for every request to commit changes or draft a commit message. Creates Sentry-style conventional commits with issue references.
Stats
Stars883
Forks45
LanguagePython
LicenseApache-2.0
Ships with sentry-skills
SKILL.md
commit.SKILL.md
--- name: commit description: Use for every request to commit changes or draft a commit message. Creates Sentry-style conventional commits with issue references. --- # Sentry Commit Messages ## Before Committing ```bash git branch --show-current ``` If the branch is `main` or `master`, create a feature branch unless the user explicitly requested a direct commit. Re-check the branch and stop if it is still `main` or `master`. Commit one coherent, independently reviewable change at a time. ## Message Rules Use: ```text <type>(<scope>): <subject> <optional body> <optional footer> ``` - Scope is optional. Add `!` before `:` for a breaking change. - Write the subject in imperative, present tense; capitalize it, omit the trailing period, and keep it at 70 characters or fewer. - Keep every line under 100 characters. - Use the body only when useful. Explain what changed and why, including previous behavior or motivation when it helps. - Never include customer or organization names, user emails, support ticket
