with one click
commit
Create a git commit
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create a git commit
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| 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