git-commit

Installation
SKILL.md

Git Commit

Create a single, well-crafted git commit from the current working tree changes.

Workflow

Step 1: Gather context

Run these commands to understand the current state.

git status
git diff HEAD
git branch --show-current
git log --oneline -10
git rev-parse --abbrev-ref origin/HEAD

The last command returns the remote default branch (e.g., origin/main). Strip the origin/ prefix to get the branch name. If the command fails or returns a bare HEAD, try:

Related skills

More from udecode/plate

Installs
7
Repository
udecode/plate
GitHub Stars
16.3K
First Seen
Mar 27, 2026