con un clic
commit
Create a git commit
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ú
Create a git commit
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 | commit |
| description | Create a git commit |
Create a git commit for the current staged and unstaged changes.
Run git status (never use -uall) and git diff (staged + unstaged) and git log --oneline -10 in parallel
Stage the relevant files by name (avoid git add -A or git add .). Do not commit files that likely contain secrets (.env, credentials, etc)
Write a concise commit message:
fix(scanner):, feat(subsonic):, refactor(db):) if the project already uses that style, otherwise match the project's existing commit styleCo-Authored-By trailerCreate the commit. Pass the message via HEREDOC:
git commit -m "$(cat <<'EOF'
message here
EOF
)"
Run git status to verify