Our review
Updates an existing pull request by pushing new commits and regenerating its description.
Strengths
- Recomputes the description from scratch based on all branch commits
- Respects git workflow by asking for confirmation before pushing
- Only updates the title when it no longer reflects changes
- Uses the previous description as a guide for consistent formatting
Limitations
- Requires the gh CLI tool to be installed and configured
- Only works for GitHub PRs (not GitLab, Bitbucket, etc.)
- May not handle changes in base branch automatically
When you've added commits to a branch with an open PR and want the description automatically refreshed.
If you just want to push without updating the description, or if the PR is on a non-GitHub platform.
Security analysis
CautionThe skill runs bash commands that push to remote and update PR descriptions. It includes a confirmation step, reducing risk. Legitimate use case but requires network access and repository write permissions.
- •Uses powerful git and gh commands that modify the remote repository, including git push and gh pr edit. However, user confirmation is required before push.
Examples
I just pushed a fix for the login validation to my branch. Update the PR description to reflect all changes.I have two new commits on this branch that haven't been pushed yet. Please push them and regenerate the PR description based on all commits.Update the PR number 42 with all my recent changes. Rewrite the description but keep the format similar to the current one.name: update-pr description: Update existing pull request with new commits
Update Pull Request
Push new commits to an existing pull request and optionally update its description.
Workflow
- Verify branch and PR: Ensure you're on a branch with an existing PR
- Review all commits: Show all commits that will be in the PR
- Ask user for confirmation: Before pushing, show what will be pushed and ask for confirmation
- Push any unpushed changes: Push any new commits to origin if user confirms
- Recompute PR description: Generate a fresh PR description based on all commits, using the previous description as a guide
- Update PR: Update both title (if needed) and description
- Return PR URL: Show the updated PR URL
Instructions
-
Check current branch and PR status:
git branch --show-current gh pr view --json number,title,url,baseRefName,body- If no PR exists, inform user and suggest using
/create-prinstead - If on main/master, stop and ask user to switch branches
- Store the current title and body for reference
- If no PR exists, inform user and suggest using
-
Review ALL commits in the branch (not just unpushed ones):
# Get all commits in this branch compared to the base branch git log <base-branch>..HEAD --oneline # Also check if there are unpushed commits git log origin/<current-branch>..HEAD --oneline- Show all the commits that are part of this PR
- Note if there are unpushed commits that need to be pushed
-
ASK USER before pushing any unpushed commits:
- Show user what commits will be pushed (from step 2)
- Ask: "Ready to push these commits to update the PR?"
- Wait for user confirmation
- This respects the user's git workflow rules
-
Push any unpushed commits (if user confirmed):
git push- Only run this if there were unpushed commits AND user confirmed
- If already up to date, skip this step
-
Analyze all changes and recompute PR description:
- Review ALL commits in the branch (from step 2)
- Look at the previous PR description and title as a guide
- Generate a fresh, comprehensive PR description that:
- Accurately reflects ALL changes in the branch
- Follows the same format/style as the previous description
- Uses concise bullet points
- Groups related changes together
- Is complete but not verbose
- Consider if the title needs updating to better reflect the scope
-
Update the PR:
# Update title if needed gh pr edit <pr-number> --title "New Title" # Update description gh pr edit <pr-number> --body "$(cat <<'EOF' ## Summary - First main change - Second main change - Additional improvements EOF )"- Always update the description
- Only update the title if the current one doesn't accurately reflect the changes
-
Return the PR URL and summary of what was done
Key Principles
- Complete recomputation: Generate the description from scratch based on ALL commits
- Use previous as guide: Keep similar format and style from the previous description
- Smart title updates: Only change title if it's no longer accurate
- Account for pushed commits: Handle cases where commits were already pushed
- Clear and comprehensive: Description should cover everything in the branch
- Concise format: Keep it readable with bullet points, no unnecessary detail
- Respect git workflow: Always ask user before pushing (per user's git workflow rules)
Example Output
✅ Found PR #123: "Add user authentication"
📝 All commits in this branch:
- abc1234 Initial authentication setup
- def5678 Add JWT token support
- 789abcd Fix login validation
- 012cdef Add password reset
📤 Unpushed commits: 2
- 789abcd Fix login validation
- 012cdef Add password reset
🚀 Pushing commits...
✅ Pushed to origin
🔄 Recomputing PR description based on all commits...
✅ Updated PR #123:
- Title: "Add user authentication" (unchanged)
- Description: Updated to reflect all changes
PR URL: https://github.com/org/repo/pull/123
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.