{"id":41374549,"url":"https://github.com/gh-tui-tools/gh-review-conductor","last_synced_at":"2026-02-01T20:00:50.594Z","repository":{"id":318504933,"uuid":"1071578531","full_name":"gh-tui-tools/gh-review-conductor","owner":"gh-tui-tools","description":"🎻 A GitHub CLI extension to apply PR review comments and suggestions directly to your local code.","archived":false,"fork":false,"pushed_at":"2026-01-18T13:55:18.000Z","size":279,"stargazers_count":4,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-18T17:44:32.258Z","etag":null,"topics":["gh-extension","github","github-cli","github-integration","github-tools","pull-request-review","review-tools","tui"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gh-tui-tools.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-10-07T14:32:21.000Z","updated_at":"2026-01-18T13:54:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"587ac0c9-ea31-44e0-b8ac-88f45e8db476","html_url":"https://github.com/gh-tui-tools/gh-review-conductor","commit_stats":null,"previous_names":["chmouel/gh-review","chmouel/gh-prreview","gh-tui-tools/gh-review-conductor"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/gh-tui-tools/gh-review-conductor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gh-tui-tools%2Fgh-review-conductor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gh-tui-tools%2Fgh-review-conductor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gh-tui-tools%2Fgh-review-conductor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gh-tui-tools%2Fgh-review-conductor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gh-tui-tools","download_url":"https://codeload.github.com/gh-tui-tools/gh-review-conductor/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gh-tui-tools%2Fgh-review-conductor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28988406,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T18:17:03.387Z","status":"ssl_error","status_checked_at":"2026-02-01T18:16:57.287Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gh-extension","github","github-cli","github-integration","github-tools","pull-request-review","review-tools","tui"],"created_at":"2026-01-23T10:00:30.290Z","updated_at":"2026-02-01T20:00:50.579Z","avatar_url":"https://github.com/gh-tui-tools.png","language":"Go","funding_links":[],"categories":["🆕 Recently Updated"],"sub_categories":[],"readme":"# gh-review-conductor\n\nA GitHub CLI extension that applies review comments and suggestions directly to\nyour local checkout.\n\n\u003cimg width=\"1351\" height=\"500\" alt=\"image\" src=\"https://github.com/user-attachments/assets/1755f11a-9321-49ee-a13e-786a58b2d78e\" /\u003e\n\n## Overview\n\nUse `gh review-conductor` to pull review comments, preview suggested changes, and apply\nthem interactively or in bulk, all from the terminal.\n\n## Installation\n\n```bash\ngh extension install gh-tui-tools/gh-review-conductor\n```\n\nOr build from source:\n\n```bash\ngit clone https://github.com/gh-tui-tools/gh-review-conductor\ncd gh-review-conductor\ngo build\ngh extension install .\n```\n\n## Commands\n\n### Color control\n\nPass `--no-color` or set `NO_COLOR=1` to disable ANSI colors, emojis, and OSC8 hyperlinks in all output (including interactive views).\n\n### List\n\nFetch unresolved comments for the current PR (or pass `[PR_NUMBER] [THREAD_ID]`).\n\n```bash\ngh review-conductor list [PR_NUMBER] [THREAD_ID]\ngh review-conductor list --all\ngh review-conductor list --json\n```\n\n### Apply\n\nPreview and apply suggestions interactively, or add `--all`, `--file`, or\n`--include-resolved` for batch updates. `--debug` prints verbose logs and AI flags\n(--ai-auto, --ai-provider, --ai-model, --ai-template, --ai-token) help with\nconflicting cases.\n\n```bash\ngh review-conductor apply [PR_NUMBER]\ngh review-conductor apply --all [PR_NUMBER]\n```\n\n**Tip:** keep a clean working tree before running apply.\n\n### Browse\n\nNavigate review comments in an interactive selector, jump to a specific comment,\nor open it in your browser.\n\n```bash\ngh review-conductor browse\ngh review-conductor browse \u003cCOMMENT_ID\u003e\n```\n\n### Resolve\n\nResolve or unresolve threads, add comments, or resolve all for the current PR.\n\n```bash\ngh review-conductor resolve [COMMENT_ID]\ngh review-conductor resolve --all\n```\n\n### Comment\n\nReply via editor, inline `--body`, file, or stdin input. Use `--resolve` to mark\nthreads resolved after replying.\n\n```bash\ngh review-conductor comment \u003cCOMMENT_ID\u003e [PR_NUMBER]\n```\n\n## Features\n\n- fetches GitHub review comments and parses suggestion blocks\n- previews and applies suggestions with an interactive UI\n- browse comments, resolve threads, and reply without leaving the terminal\n- optional AI-assisted application for fuzzy or outdated suggestion hunks\n\n## Requirements\n\n- GitHub CLI (`gh`) installed and authenticated\n- Git repository with a GitHub remote and an active PR\n\n## License\n\n[Apache License 2.0](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgh-tui-tools%2Fgh-review-conductor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgh-tui-tools%2Fgh-review-conductor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgh-tui-tools%2Fgh-review-conductor/lists"}