一键导入
request-pr-review
Request GitHub Copilot review on a Pull Request. "PR レビュー依頼", "copilot review" などで起動。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Request GitHub Copilot review on a Pull Request. "PR レビュー依頼", "copilot review" などで起動。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Ask OpenAI Codex CLI for an autonomous second AI opinion. "ask codex", "codex と相談" などで起動。
Extract VTT transcript from a Zoom recording share page. "zoom transcript", "zoom 文字起こし" などで起動。
Download the video (MP4) from a Zoom recording share page. "zoom video download", "zoom 録画 ダウンロード", "zoom 動画 ダウンロード" などで起動。
Round-trip code review through difit. Use when the user mentions "difit", "diff review", "open the diff", "let me look at this", or "review this PR locally". Launch mode arg — "open" (default, no comments at launch), "explain" (AI annotates its own change), "review" (AI posts findings on human code).
Stop tool execution before exhausting your Claude usage — set a 5h/7d usage-% or per-session cost threshold.
Install or uninstall the limit-usage statusLine wrapper (edits settings.json).
| name | request-pr-review |
| description | Request GitHub Copilot review on a Pull Request. "PR レビュー依頼", "copilot review" などで起動。 |
| argument-hint | [pr-number | url | branch] |
| metadata | {"author":"pokutuna","compatibility":"GitHub CLI (gh) v2.88.0+ installed and authenticated"} |
| allowed-tools | ["Bash(gh pr view*)","Bash(gh pr edit*)","Bash(gh api*)"] |
PullRequest に GitHub Copilot のレビューまたは再レビューをリクエストする。
$ARGUMENTS$ARGUMENTS に PR 番号、URL、ブランチ名が指定されていればそれを使うgh pr view <pr> --json number,url -q '"\(.number) \(.url)"' で PR の存在を確認する (引数なしなら <pr> を省略)gh pr edit <pr> --add-reviewer @copilot
@copilot と @ 付きで指定する。Copilot や copilot (@ なし) を渡すと GraphQL: Could not resolve user with login 'copilot'. で失敗する依頼が成立したかは REST API の requested_reviewers で確認する。
gh api repos/<owner>/<repo>/pulls/<pr>/requested_reviewers -q '.users[].login'
Copilot が含まれていれば依頼成立 (type は Bot)gh pr view <pr> --json reviewRequests (GraphQL 経路) は Copilot bot を含まず空配列 [] を返すため、これでは確認しない (依頼が成立していても失敗と誤判定する)<owner>/<repo> は gh repo view --json owner,name -q '"\(.owner.login)/\(.name)"' などで取得するrequested_reviewers に Copilot あり): PR の URL とともに Copilot レビューをリクエストした旨を表示する/request-pr-review # 現在のブランチの PR に Copilot レビューをリクエスト
/request-pr-review 123 # PR #123 に Copilot レビューをリクエスト