Describe the feature or problem you’d like to solve
GitHub CLI now supports requesting Copilot code review from the terminal, which appears to address:
Examples documented in the changelog include:
gh pr edit --add-reviewer @copilot
gh pr create --reviewer @copilot
Related references:
However, I could not find any way to choose which model Copilot should use for the review.
I checked the current implementation around:
and related PRs:
From what I can tell, the CLI supports @copilot as a reviewer identity, but there does not seem to be any parameter or plumbing for passing a model name along with the review request.
Proposed solution
If the backend/product supports model selection for Copilot code review, it would be helpful for gh to expose it.
Possible UX ideas:
gh pr edit 123 --add-reviewer @copilot --copilot-model gpt-5
gh pr create --reviewer @copilot --copilot-model gpt-5
or possibly:
gh pr edit 123 --add-reviewer @copilot:gpt-5
gh pr create --reviewer @copilot:gpt-5
Related issue: #10598
Describe the feature or problem you’d like to solve
GitHub CLI now supports requesting Copilot code review from the terminal, which appears to address:
Examples documented in the changelog include:
gh pr edit --add-reviewer @copilotgh pr create --reviewer @copilotRelated references:
However, I could not find any way to choose which model Copilot should use for the review.
I checked the current implementation around:
pkg/cmd/pr/review/review.gopkg/cmd/pr/shared/params.gopkg/cmd/pr/create/create.goapi/queries_repo_test.goand related PRs:
gh pr edit: Add support for Copilot as reviewer with search capability, performance and accessibility improvements #12567gh pr create: login-based reviewer requests and search-based interactive selection #12627gh pr viewandgh issue view: show friendly display names for all actors #12854From what I can tell, the CLI supports
@copilotas a reviewer identity, but there does not seem to be any parameter or plumbing for passing a model name along with the review request.Proposed solution
If the backend/product supports model selection for Copilot code review, it would be helpful for
ghto expose it.Possible UX ideas:
or possibly:
Related issue: #10598