A Claude Code skill (slash command) to open a PR after committing all outstanding changes and pushing them.
1---2allowed-tools: Bash(git add:*), Bash(git status:*), Bash(git commit:*), Bash(git push:*), Bash(gh pr create:*)3description: Commit and push everything then open a PR request to main4---56## Context78- Current git status: !`git status`9- Current git diff (staged and unstaged changes): !`git diff HEAD`10- Current branch: !`git branch --show-current`11- Recent commits: !`git log --oneline -10`1213## Your task14151. Review the existing changes and then create a git commit following the conventional co...