Skip to content

gh-tui-tools/gh-review-conductor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

107 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gh-review-conductor

A GitHub CLI extension that applies review comments and suggestions directly to your local checkout.

image

Overview

Use gh review-conductor to pull review comments, preview suggested changes, and apply them interactively or in bulk, all from the terminal.

Installation

gh extension install gh-tui-tools/gh-review-conductor

Or build from source:

git clone https://github.com/gh-tui-tools/gh-review-conductor
cd gh-review-conductor
go build
gh extension install .

Commands

Color control

Pass --no-color or set NO_COLOR=1 to disable ANSI colors, emojis, and OSC8 hyperlinks in all output (including interactive views).

List

Fetch unresolved comments for the current PR (or pass [PR_NUMBER] [THREAD_ID]).

gh review-conductor list [PR_NUMBER] [THREAD_ID]
gh review-conductor list --all
gh review-conductor list --json

Apply

Preview and apply suggestions interactively, or add --all, --file, or --include-resolved for batch updates. --debug prints verbose logs and AI flags (--ai-auto, --ai-provider, --ai-model, --ai-template, --ai-token) help with conflicting cases.

gh review-conductor apply [PR_NUMBER]
gh review-conductor apply --all [PR_NUMBER]

Tip: keep a clean working tree before running apply.

Browse

Navigate review comments in an interactive selector, jump to a specific comment, or open it in your browser.

gh review-conductor browse
gh review-conductor browse <COMMENT_ID>

Resolve

Resolve or unresolve threads, add comments, or resolve all for the current PR.

gh review-conductor resolve [COMMENT_ID]
gh review-conductor resolve --all

Comment

Reply via editor, inline --body, file, or stdin input. Use --resolve to mark threads resolved after replying.

gh review-conductor comment <COMMENT_ID> [PR_NUMBER]

Features

  • fetches GitHub review comments and parses suggestion blocks
  • previews and applies suggestions with an interactive UI
  • browse comments, resolve threads, and reply without leaving the terminal
  • optional AI-assisted application for fuzzy or outdated suggestion hunks

Requirements

  • GitHub CLI (gh) installed and authenticated
  • Git repository with a GitHub remote and an active PR

License

Apache License 2.0