fetch-unresolved-comments

Fetch unresolved comments from GitHub pull requests via GraphQL API.

1|Updated Jan 4, 2026
One-click install
npx skills add https://github.com/bossjones/boss-skills --skill fetch-unresolved-comments-bossjones
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fetch-unresolved-comments
Source: https://github.com/bossjones/boss-skills/tree/main/plugins/boss-dev/agent-harness/skills/fetch-unresolved-comments
Command: npx skills add https://github.com/bossjones/boss-skills --skill fetch-unresolved-comments-bossjones

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires aiohttp, pydantic, and includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill streamlines the process of identifying and accessing unresolved PR review comments on GitHub pull requests, enabling developers to focus on critical feedback more efficiently.

Core Features & Use Cases

  • GitHub PR Comment Fetching: Retrieve only unresolved comments from a specified pull request.
  • Filtering: Exclude resolved comments to focus on open feedback.
  • Use Case: Before addressing feedback on a pull request, use this Skill to quickly gather all unresolved comments for review.

Quick Start

Fetch unresolved comments for a pull request by running the skill with the PR URL:

uv run "${CLAUDE_SKILL_DIR}/scripts/fetch_unresolved_comments.py" https://github.com/owner/repo/pull/123

Frequently Asked Questions about fetch-unresolved-comments

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

FAQPage Schema
How do I fetch unresolved comments from a GitHub pull request?

Fetch unresolved PR review comments by running the skill script with the pull request URL, which queries the GitHub GraphQL API and returns a JSON output of open feedback grouped by file.

How do I filter resolved comments and only show unresolved PR review feedback?

Filtering resolved comments is handled automatically by the skill, which queries the GitHub GraphQL API to exclude resolved threads and provides a JSON output of only unresolved PR comments.

Do I need a GitHub token to retrieve unresolved PR review comments?

Yes, retrieving unresolved PR review comments requires authentication via a GH_TOKEN environment variable or the gh CLI to authorize GitHub GraphQL API requests.

Can I get unresolved PR comments organized by file for my review workflow?

Yes, fetching unresolved PR review comments provides a JSON output organized by file, allowing you to focus on open feedback within specific files during your development review process.

What is the best way to list unresolved GitHub PR comments via the API?

Listing unresolved GitHub PR comments is best handled by querying the GitHub GraphQL API to filter out resolved threads and return open feedback structured by file path.

Why am I getting resolved comments when fetching GitHub PR review feedback?

Fetching GitHub PR review feedback might return resolved comments if not properly filtered; this skill specifically filters out resolved threads using the GitHub GraphQL API to provide only unresolved comments.