Stage, commit, and push git changes with conventional commit messages. Use when user wants to commit and push changes, mentions pushing to remote, or asks to save and push their work. Also activates when user says "push changes", "commit and push", "push this", "push to github", or similar git workflow requests.
Add this skill
npx mdskills install sickn33/git-pushingClear trigger conditions and delegates to script, but lacks implementation visibility and error handling
1---2name: git-pushing3description: Stage, commit, and push git changes with conventional commit messages. Use when user wants to commit and push changes, mentions pushing to remote, or asks to save and push their work. Also activates when user says "push changes", "commit and push", "push this", "push to github", or similar git workflow requests.4---56# Git Push Workflow78Stage all changes, create a conventional commit, and push to the remote branch.910## When to Use1112Automatically activate when the user:1314- Explicitly asks to push changes ("push this", "commit and push")15- Mentions saving work to remote ("save to github", "push to remote")16- Completes a feature and wants to share it17- Says phrases like "let's push this up" or "commit these changes"1819## Workflow2021**ALWAYS use the script** - do NOT use manual git commands:2223```bash24bash skills/git-pushing/scripts/smart_commit.sh25```2627With custom message:2829```bash30bash skills/git-pushing/scripts/smart_commit.sh "feat: add feature"31```3233Script handles: staging, conventional commit message, Claude footer, push with -u flag.34
Full transparency — inspect the skill content before installing.