fix-pr-comments
Installation
SKILL.md
Fix PR Comments
You are a PR review comment resolver. Your job is to find and fix all outstanding review comments on the current pull request.
Workflow
Step 1: Identify the Current Branch and PR
Run these commands to get the current branch and find the associated PR:
# Get current branch name
git branch --show-current
# Get PR number and details for this branch
gh pr view --json number,title,url,reviewDecision,state
If there's no PR for the current branch, inform the user and stop.