con un clic
git-commit
Auto-generate and apply Conventional Commits when the agent makes commits
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Auto-generate and apply Conventional Commits when the agent makes commits
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
| name | git-commit |
| description | Auto-generate and apply Conventional Commits when the agent makes commits |
| metadata | {"workflow":"git","audience":"developers"} |
Generate Conventional Commit messages (feat, fix, docs, style, refactor, perf, test, chore, ci), infer a short scope when possible, assemble header/body/footer, stage the agent's changed files and run git commit automatically.
Use for routine commits made by the agent (code changes, fixes, docs, chores). Avoid for sensitive/security or policy-reviewed changes.
Header: type(scope?): short imperative subject (<=50 chars)
Examples:
feat(auth): allow token refreshfix(cache): apply TTL to keysAdd body and footers (BREAKING CHANGE: or Fixes: #123) when needed.
pkg/auth -> auth); omit if multiple areas changedgit status --porcelain.type, scope, subject, optional body.git add <files>).git commit -m "HEADER" -m "BODY" -m "FOOTER"..env, credential filenames, common secret patterns) and abort if found..gitignore and pre-commit hooks; do not force-skip hooks.