Claude Code Plugins

Community-maintained marketplace

Feedback
0
0

Check PR review comments and feedback from CodeRabbit and human reviewers. Use when user asks about reviews, unresolved comments, CodeRabbit feedback, Claude review, or PR status.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name pr-review-checker
description Check PR review comments and feedback from CodeRabbit and human reviewers. Use when user asks about reviews, unresolved comments, CodeRabbit feedback, Claude review, or PR status.
allowed-tools Bash, Read, Grep

PR Review Checker Skill

Purpose

Automatically fetch and summarize PR review comments when the user asks about review status, unresolved feedback, or what reviewers said. This is a read-only skill.

When Claude Should Use This

  • User asks "any review comments?"
  • User asks "what did CodeRabbit say?"
  • User asks "unresolved comments on PR #X"
  • User asks "check PR feedback"
  • User asks "is PR #X approved?"
  • User mentions reviewing or addressing feedback

Instructions

Get PR Review Status

gh pr view <number> --json reviews,reviewDecision,state

Get Review Comments (Inline)

gh api repos/rollercoaster-dev/monorepo/pulls/<number>/comments

Get Issue Comments (Includes CodeRabbit/Claude)

gh api repos/rollercoaster-dev/monorepo/issues/<number>/comments

Identify Reviewers

  • coderabbitai[bot] - CodeRabbit AI review
  • claude[bot] - Claude Code review
  • Other usernames - Human reviewers

Parsing CodeRabbit Reviews

CodeRabbit reviews typically include:

  • Walkthrough - Summary of changes
  • Actionable Comments - Issues to address (look for severity indicators)
  • Pre-merge Checks - Title, description, linked issues checks

Look for these patterns:

  • _Potential issue_ or red indicators = Critical
  • _Nitpick_ = Optional/Low priority
  • Checkmarks = Approvals

Output Format

## PR #X Review Status

**CodeRabbit:** Reviewed (Approved/Changes Requested)
**Claude:** Reviewed/Not triggered
**Human Reviews:** <count>

### Actionable Items

| #   | File            | Issue       | Severity | Status     |
| --- | --------------- | ----------- | -------- | ---------- |
| 1   | path/file.ts:42 | Description | Critical | Unresolved |

### Summary

- <n> critical issues
- <n> suggestions
- <n> approvals

Repository Context

  • Owner: rollercoaster-dev
  • Repo: monorepo