Systematically resolve Pull Request review comments using gh CLI to fetch comments and apply requested changes.
Resolves GitHub PR review comments systematically using gh CLI to fetch, categorize, and apply fixes.
/plugin marketplace add fusengine/claude-code-plugins/plugin install fusengine-apex-agents-apex-agents@fusengine/claude-code-pluginsSystematically address all PR review comments:
Fetch PR Comments:
gh pr view [PR_NUMBER] --comments
gh api repos/{owner}/{repo}/pulls/[PR_NUMBER]/comments
Categorize Comments:
Address Each Comment: For each comment:
Use research-expert if clarification needed on best practices
Run Quality Checks:
Use sniper to ensure all changes maintain code quality
bun run lint
bun test
Commit Fixes:
git commit -m "$(cat <<'EOF'
fix: Address PR review comments
- [Comment 1 fix]
- [Comment 2 fix]
- [Comment 3 fix]
EOF
)"
Push and Notify:
git push
gh pr comment [PR_NUMBER] --body "✅ All review comments addressed"
Arguments:
Example Usage:
/fix-pr-comments 123 → Fix all comments for PR #123/fix-pr-comments → Fix comments for current PR/fix-pr-commentsFetch PR review comments and implement all requested changes