Gh Pr Review banner
agynio agynio

Gh Pr Review

AI community

Description

GitHub CLI extension that adds full inline PR review comment support — view, navigate, reply to, and resolve review threads directly from the terminal. LLM-ready and ideal for automated PR review agents.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

gh-pr-review

[![Agyn badge](https://agyn.io/badges/badge_dark.svg)](http://agyn.io)

`gh-pr-review` is a GitHub CLI extension that finally brings **inline PR review comments** to the terminal. GitHub’s built-in `gh` tool does *not* show inline comments or review threads — but this extension does.

With `gh-pr-review`, you can:

  • View complete inline review threads with file and line context
  • See unresolved comments during code review
  • Reply to inline comments directly from the terminal
  • Resolve review threads programmatically
  • Export structured output ideal for LLMs and automated PR review agents

Designed for developers, DevOps teams, and AI systems that need **full pull request review context**, not just top-level comments.

**Blog post:** [gh-pr-review: LLM-friendly PR review workflows in your CLI](https://agyn.io/blog/gh-pr-review-cli-agent-workflows) — explains the motivation, design principles, and CLI + JSON output examples.

Quickstart

The quickest path from opening a pending review to resolving threads:

  1. **Install or upgrade the extension.**

    gh extension install agynio/gh-pr-review
    # Update an existing installation
    gh extension upgrade agynio/gh-pr-review
  2. **Start a pending review (GraphQL).** Capture the returned `id` (GraphQL node).

    gh pr-review review --start -R owner/repo 42
    
    {
      "id": "PRR_kwDOAAABbcdEFG12",
      "state": "PENDING"
    }

    Pending reviews omit `submitted_at`; the field appears after submission.

  3. **Add inline comments with the pending review ID (GraphQL).** The `review --add-comment` command fails fast if you supply a numeric ID instead of the required `PRR_…` GraphQL identifier.

    `