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 commit format. If you think there are more than one distinct change you can create multiple commits. If there are no outstanding changes proceed to 2.162. Push all commits.173. Open a PR to main following the conventional formats.
A slash command for Claude Code to perform (a) commit(s) following the conventional style.
Act as a pull request review assistant to assess code changes for security vulnerabilities, breaking changes, and overall quality.