commit-push-pr
Installation
SKILL.md
Commit, Push, PR
Ship your changes in one workflow: commit, push, and open a PR if needed.
Process
1. Assess the state
git status
git diff --stat
git log --oneline -5
Check what's staged, unstaged, and the recent commit history for message style.
2. Commit (safe staging)
Critical: Always use explicit file paths. Never use . or -A without a path.