A GitHub CLI extension that applies review comments and suggestions directly to your local checkout.
Use gh review-conductor to pull review comments, preview suggested changes, and apply
them interactively or in bulk, all from the terminal.
gh extension install gh-tui-tools/gh-review-conductorOr build from source:
git clone https://github.com/gh-tui-tools/gh-review-conductor
cd gh-review-conductor
go build
gh extension install .Pass --no-color or set NO_COLOR=1 to disable ANSI colors, emojis, and OSC8 hyperlinks in all output (including interactive views).
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 --jsonPreview 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.
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 or unresolve threads, add comments, or resolve all for the current PR.
gh review-conductor resolve [COMMENT_ID]
gh review-conductor resolve --allReply via editor, inline --body, file, or stdin input. Use --resolve to mark
threads resolved after replying.
gh review-conductor comment <COMMENT_ID> [PR_NUMBER]- 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
- GitHub CLI (
gh) installed and authenticated - Git repository with a GitHub remote and an active PR