| name | pr-comment-resolver |
| description | Address PR review comments by implementing reviewer feedback and suggestions. |
| allowed-tools | Read Write Edit Grep Glob Bash |
PR Comment Resolver
Audience: Developers with PR review comments that need resolution.
Goal: Understand reviewer feedback, implement changes, verify fixes.
PR Comment Commands
gh pr view <PR_NUMBER> --comments
gh api repos/{owner}/{repo}/pulls/{pr_number}/comments
gh api repos/{owner}/{repo}/pulls/{pr_number}/reviews
Comment Types
| Type | Indicators | Action |
|---|
| Bug fix | "This will break...", "Missing check..." | Implement the fix |
| Refactor | "Extract this...", "This is too complex..." | Apply the pattern |
| Style | "Rename to...", "Format as..." | Adjust naming/format |
| Tests | "Add test for...", "Missing coverage..." | Add test cases |
| Docs | "Add comment...", "Document this..." | Add documentation |
| Questions | "Why...?", "What about...?" | Reply with explanation |
Workflow