commit-push

Installation
SKILL.md

Commit & Push

Commit already-staged changes and push to the current branch.

Steps

  1. Run git diff --cached --stat to review what will be committed.
  2. Write the commit message:
    • If $ARGUMENTS is provided, use it verbatim.
    • Otherwise inspect git diff --cached and write a short imperative-mood summary (50 chars max subject line).
  3. Show the proposed commit message and ask the user to confirm before committing. Wait for approval.
  4. Commit: git commit -m "<message>" — no Co-Authored-By line
  5. Push: git push
  6. Confirm with git log --oneline -1.
Installs
3
First Seen
Jun 21, 2026
commit-push — ernesto27/skills