A Claude Code skill (slash command) to open a PR after committing all outstanding changes and pushing them.
--- allowed-tools: Bash(git add:*), Bash(git status:*), Bash(git commit:*), Bash(git push:*), Bash(gh pr create:*) description: Alles committen und pushen, dann einen PR-Request an main öffnen --- ## Kontext - Aktueller Git-Status: !`git status` - Aktueller Git-Diff (gestagte und ungestagte Änderungen): !`git diff HEAD` - Aktueller Branch: !`git branch --show-current` - Letzte Commits: !`git log --oneline -10` ## Ihre Aufgabe 1. Überprüfen Sie die vorhandenen Änderungen und erstellen Sie dann einen Git-Commit gemäß der konventionellen co...