원클릭으로
triage-copilot
Fetch and classify Copilot's review suggestions on a PR as incorporate, ignore, or discuss.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Fetch and classify Copilot's review suggestions on a PR as incorporate, ignore, or discuss.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | triage-copilot |
| description | Fetch and classify Copilot's review suggestions on a PR as incorporate, ignore, or discuss. |
| disable-model-invocation | true |
Triage GitHub Copilot's review suggestions on a pull request.
The PR number is: $ARGUMENTS
If no PR number was provided, detect it from the current branch:
gh pr view --json number --jq .number
Run these commands to gather Copilot's feedback:
Overview review (from copilot-pull-request-reviewer[bot]):
gh api repos/bkelly-lab/jkp-data/pulls/<PR>/reviews --jq '.[] | select(.user.login == "copilot-pull-request-reviewer[bot]") | {state, body}'
Inline comments (from user Copilot):
gh api repos/bkelly-lab/jkp-data/pulls/<PR>/comments --jq '.[] | select(.user.login == "Copilot") | {path, line, body}'
PR diff for context:
gh pr diff <PR>
If no Copilot review exists, report that and suggest running gh pr edit <PR> --add-reviewer copilot to request one.
Pass the Copilot review data and PR diff to @copilot-triage for classification.
Show the triage report to the reviewer. Highlight any suggestions classified as "Incorporate" or "Discuss" — these need attention.
Full PR review workflow — Copilot triage, automated checks, change requests or approval.
Verify that a PR author addressed prior review feedback — parses checklist items from the reviewer's comment and checks each against new commits.
Pre-flight checks, approve, squash-merge, and delete branch for a PR.
Draft and post a structured PR comment requesting specific changes from the author.
Run all automated PR checks — code conventions, documentation sync, and holistic review.
Check whether code changes need documentation updates.