checkout-commit-push-pr

Installation
SKILL.md

Complete Git Workflow

DO NOT ASK ME WHAT TO DO. Just follow the workflow below. The only exceptions: a questionable untracked file (per step 2) or a diverged local default branch (per step 1) — stop and flag those instead of guessing.

  1. Check current branch and changes

    Do that via

    git status
    

    Examine ALL pending changes to inform our git commit/PR messages — plain git diff only shows unstaged edits to tracked files, so also check what's already staged:

    git diff
    git diff --staged
    
Installs
65
First Seen
Jul 15, 2026
checkout-commit-push-pr — rubenflamshepherd/ruben-agent-skills