From fuse:ai-pilot
Systematically resolve Pull Request review comments using gh CLI to fetch comments and apply requested changes.
npx claudepluginhub fusengine/claude-code-plugins --plugin fuse:ai-pilot# Fix PR Comments Systematically address all PR review comments: 1. **Fetch PR Comments**: 2. **Categorize Comments**: - **Must Fix**: Blocking issues (security, bugs, breaking changes) - **Should Fix**: Code quality, performance, best practices - **Nice to Have**: Style preferences, minor suggestions - **Questions**: Clarifications needed 3. **Address Each Comment**: For each comment: - Locate relevant file and line - Understand the requested change - > Use research-expert if clarification needed on best practices - Apply fix following project patterns ...
/fix-pr-commentsFix automated PR review comments (CodeRabbit, CodeScene, etc.)
/fix-pr-commentsSystematically resolve Pull Request review comments using gh CLI to fetch comments and apply requested changes.
/fix-pr-commentsFetch all unresolved comments from current PR and fix them automatically
/fix-pr-commentsFetch all unresolved comments from current PR and fix them automatically
Systematically 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