git-push-pr

Installation
SKILL.md

Git Push PR Workflow

Automate the full git workflow: stage files, commit, push, and create or update a pull request.

Workflow Steps

Follow these steps in order:

1. Understand Changes

  • Run git status and git diff (both staged and unstaged)
  • Summarize the changes to yourself before proceeding

2. Stage Files

  • If the user specified files: Stage only those files with git add <files>
  • Otherwise: Stage all modified and new files with git add -A
  • Security: Never stage files that look like secrets (.env, credentials, tokens, etc.). Warn the user if such files are present
Related skills
Installs
1
GitHub Stars
1
First Seen
Mar 29, 2026