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.
Related skills
More from paulkinlan/co-do
silent-failure-hunter
|
26comment-analyzer
|
25type-design-analyzer
|
22pr-test-analyzer
|
21code-reviewer
|
4agent-reviews
Review and fix PR review bot findings on current PR, loop until resolved. Fetches unanswered bot comments, evaluates each finding, fixes real bugs, dismisses false positives, and replies to every comment with the outcome.
3