Create a pull request with auto-generated title and description
Create a pull request for the current branch.
Run in parallel:
git branch --show-current — current branchgit log <base>..HEAD --oneline — commits in this branchgit diff <base>...HEAD --stat — changes summarygit rev-parse --abbrev-ref @{upstream} — check if pushedBase branch: use $ARGUMENTS if provided, otherwise default to main.
If not pushed, run git push -u origin <branch> first.
release/* → Release v<version>feat/* → Short feature descriptionfix/* → Short fix descriptionKeep under 70 characters.
## Summary
<1-3 bullet points>
## Changes
<Bulleted list grouped by area: Backend, Frontend, CI, etc.>
Do NOT include "Test plan" section. Do NOT include "Generated with Claude Code" or any AI attribution.
Use the gh CLI at "/c/Program Files/GitHub CLI/gh.exe" (full path required on this machine).
Show title and description, then ask "Quer que eu crie?". When user confirms, create with:
"/c/Program Files/GitHub CLI/gh.exe" pr create --title "<title>" --body "<body>" --base <base-branch>
Return the PR URL when done.