---
name: Pull Request Comments Review
slug: pull-request-comments-review
category: Quality
description: Pull Request Comments Review fetches and analyzes pull request review comments on the current branch, groups them by theme, and summarizes actionable items so a developer can address feedback.
github: "https://github.com/ccch1mneyyy/dsh-TUI/tree/main/skills/pr-comments"
language: TypeScript
stars: 1888
forks: 79
install: "npx degit https://github.com/ccch1mneyyy/dsh-TUI/tree/main/skills/pr-comments ~/.claude/skills/pr-comments"
installs_to: ~/.claude/skills/pr-comments
source_path: skills/pr-comments/SKILL.md
collection_size: 7
category_size: 1354
collection_url: "https://dirskills.com/collections/ccch1mneyyy/dsh-TUI"
added: 2026-08-18T06:59:32.638Z
last_synced: 2026-08-18T06:59:32.638Z
canonical_url: "https://dirskills.com/skills/pull-request-comments-review"
---

# Pull Request Comments Review

Pull Request Comments Review fetches and analyzes pull request review comments on the current branch, groups them by theme, and summarizes actionable items so a developer can address feedback.

**Install:**

```bash
npx degit https://github.com/ccch1mneyyy/dsh-TUI/tree/main/skills/pr-comments ~/.claude/skills/pr-comments
```

## README

# Pull Request Comments Review

Review the pull request comments associated with the current branch and turn them into an actionable summary.

## Procedure

1. Identify the PR for the current branch (git remote, branch name → PR). If no PR is found or git hosting tools are unavailable, say so and fall back to reviewing local uncommitted changes.
2. Gather review comments (inline + general) and group them by theme: blocking changes, open questions, nits.
3. For each actionable comment: restate the concern in your own words, locate the affected code, and propose a concrete change.
4. Produce a summary: what the reviewers want changed, what's already addressed, and a suggested order of work.

## Constraints

- Never invent comments — summarize only what is actually there.
- Mark unresolved vs resolved comments explicitly.
