Ein Claude Code Skill als Slash-Befehl, um nach dem Committen aller offenen Aenderungen einen Pull Request zu oeffnen. Die offenen Aenderungen werden zuerst geprueft, dann committed und anschliessend gepusht. Danach wird ein Pull Request zu main erstellt.
Diese Uebersetzung dient nur dem Verstaendnis. Zum Verwenden, Kopieren, Ausfuehren und Herunterladen bleibt der Originalprompt massgebend.
Ein Claude Code Skill als Slash-Befehl, der nach dem Committen aller offenen Aenderungen einen Pull Request oeffnet.
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.