commit-message
Esta página aún no está disponible en tu idioma.
Instructions
-
Run
git diff --stagedto see exactly what is staged for the next commit. -
Run
git status --shortto understand the full scope of changes (staged and unstaged) and identify the files involved. -
If nothing is staged, tell the user there is nothing staged and suggest they run
git addfirst. Stop here. -
Choose the correct Conventional Commits type based on the diff:
feat: a new feature or capability visible to users or callersfix: a bug fixdocs: documentation changes onlystyle: formatting, whitespace, missing semicolons — no logic changerefactor: code restructuring with no behavior change and no new featuretest: adding or correcting testschore: build system, dependency updates, tooling, CI config
-
Determine the scope from the changed files. The scope is optional but useful when the change is clearly isolated to one module, package, or layer (for example,
api,auth,db,cli). Omit it if the change is broad. -
Write the subject line:
- Format:
type(scope): descriptionortype: descriptionif no scope - Imperative mood: “add”, “fix”, “remove” — not “added”, “fixes”, “removing”
- Maximum 72 characters
- No period at the end
- Format:
-
If the diff is non-trivial (more than one logical change, or a change whose motivation is not obvious from the code), add a body:
- Blank line after the subject
- Bullet points explaining why the change was made, not what it does (the diff already shows what)
- Keep each bullet under 72 characters
-
Output only the commit message text. No surrounding explanation, no markdown code block wrapping.