github-pr-feedback

Fetch unresolved review threads and PR conversation comments for a target branch.

5|Updated Jan 25, 2026
One-click install
npx skills add https://github.com/f4irline/bbqparty-ai --skill github-pr-feedback
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: github-pr-feedback
Source: https://github.com/f4irline/bbqparty-ai/tree/main/packages/opencode/.opencode/skills/github-pr-feedback
Command: npx skills add https://github.com/f4irline/bbqparty-ai --skill github-pr-feedback

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Quickly identify outstanding code review discussion by aggregating unresolved review threads and PR conversation comments for the pull request associated with a branch, so engineers can focus on actionable items before merging.

Core Features & Use Cases

  • Resolves the target branch using a ticket branch lookup or the current git branch and locates the corresponding pull request.
  • Retrieves and filters review threads to only unresolved ones and collects all PR conversation comments for a concise, actionable summary.
  • Use case: a developer preparing a PR merge can run this Skill to see all unresolved review threads and recent comments to prioritize fixes and responses.

Quick Start

Run the github-pr-feedback skill to fetch unresolved review threads and PR conversation comments for the pull request associated with the current or ticket branch.

Frequently Asked Questions about github-pr-feedback

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I see unresolved pull request review threads before merging?

Unresolved pull request review threads are fetched by resolving the target branch via ticket branch lookup, then retrieving and filtering PR review threads to display only unresolved ones alongside conversation comments.

How do I retrieve PR conversation comments for a specific git branch?

PR conversation comments are retrieved by parsing the origin remote to locate the repository, resolving the target branch, and using GitHub MCP endpoints to pull issue comments and review threads for the associated pull request.

Does fetching GitHub PR comments require GitHub MCP endpoints?

Yes, fetching GitHub PR comments requires the list_pull_requests and list_pr_comments GitHub MCP endpoints to retrieve review_threads and issue_comments data for the associated pull request.

What's the best way to aggregate unresolved code review discussion on GitHub?

Aggregating unresolved code review discussion involves automating the retrieval of unresolved review threads and PR conversation comments, filtering out resolved items to produce a concise summary of outstanding actionable feedback.

Can I use a ticket branch lookup to find the corresponding pull request?

Yes, you can use a ticket branch lookup to find the corresponding pull request, utilizing git-find-ticket-branch as a fallback to resolve the target branch when the current branch is not directly tied to the PR.