Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

github-pr-reviewGitHub PR 审查

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

1,331

周安装

56

GitHub Stars

27

下载量

466
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:github-pr-review(GitHub PR 审查)
来源仓库:https://github.com/aidankinzett/claude-git-pr-skill
仓库路径:skills/github-pr-review
安装命令:
npx skills add https://github.com/aidankinzett/claude-git-pr-skill --skill github-pr-review
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/aidankinzett/claude-git-pr-skill --skill github-pr-review

简介

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。

  • 支持批量添加代码建议和待审评论,确保在时间压力下仍能系统化审查变更内容。
  • 通过 npx skills add 命令从 GitHub 仓库安装,依赖 gh CLI 工具执行 API 调用。
  • 涉及创建 PR、修改 Issue 或访问私有仓库时,需确认 token 权限和用户授权。
  • github-pr-review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

GitHub PR Review

Overview

Workflow for reviewing GitHub pull requests using gh api to create pending reviews with code suggestions. Always use pending reviews to batch comments, even under time pressure.

CRITICAL: Always get explicit user approval before posting any review comments. Show exactly what will be posted and ask for yes/no confirmation using AskUserQuestion.

When to Use

  • Reviewing pull requests
  • Adding code suggestions to PRs
  • Posting review comments with the gh CLI

Prerequisites

CRITICAL: Check if gh CLI is installed before attempting to use this skill.

Check for gh CLI

Before starting any PR review workflow, verify the gh CLI is available:

gh --version

If gh is not installed:

  1. Stop immediately - Do not attempt to run gh api commands
  2. Inform the user with this message:
The GitHub CLI (gh) is required for this skill but is not installed.

Please install it from: https://cli.github.com/

Installation options:
- macOS: brew install gh
- Windows: winget install GitHub.cli
- Linux: See https://cli.github.com/ for your distro

After installing, authenticate with:
  gh auth login

Then try your PR review request again.
  1. Do not proceed with the review workflow until gh is installed

After Installation

Once gh is installed, users must authenticate:

gh auth login

Core Workflow

REQUIRED STEPS (do not skip):

  1. Check gh CLI is installed - Run gh --version to verify
  2. Draft the review - Analyze PR and prepare all comments
  3. Show user exactly what will be posted - Use AskUserQuestion with yes/no
  4. Get explicit approval - Wait for user confirmation
  5. Post the review - Only after approval

Approval Pattern

Before posting ANY review, use AskUserQuestion to show:

  • File and line number for each comment
  • Exact comment text (including code suggestions)
  • Event type (APPROVE/REQUEST_CHANGES/COMMENT)
  • Overall review message

Example:

Question: "Ready to post this review?"
Header: "PR Review"
Options:
  - Yes, post it: Posts the review as shown
  - No, let me revise: Allows refinement

Technical Workflow

ALWAYS use the pending review pattern, even for single comments:

# Step 1: Create PENDING review (no event field)
gh api repos/:owner/:repo/pulls/<PR_NUMBER>/reviews \
  -X POST \
  -f commit_id="<COMMIT_SHA>" \
  -f 'comments[][path]=path/to/file.ts' \
  -F 'comments[][line]=<LINE_NUMBER>' \
  -f 'comments[][side]=RIGHT' \
  -f 'comments[][body]=Comment text

// suggested code here


Additional explanation...' --jq '{id, state}'

# Returns: {"id": <REVIEW_ID>, "state": "PENDING"}

# Step 2: Submit the pending review

gh api repos/:owner/:repo/pulls/<PR_NUMBER>/reviews/<REVIEW_ID>/events -X POST -f event="COMMENT" -f body="Optional overall review message"

Event Types

Choose the appropriate event type when submitting:

Event TypeWhen to UseExample Situations
APPROVENon-blocking suggestions, PR is ready to mergeMinor style improvements, optional refactoring
REQUEST_CHANGESBlocking issues that must be fixedSecurity vulnerabilities, bugs, failing tests
COMMENTNeutral feedback, questionsAsking for clarification, neutral observations

Quick Reference

Getting Prerequisites

# Get commit SHA
gh pr view <PR_NUMBER> --json commits --jq '.commits[-1].oid'

# Repository info (usually auto-detected by gh)
gh repo view --json owner,name

Required Parameters

  • commit_id: Latest commit SHA from the PR
  • comments[][path]: File path relative to repo root
  • comments[][line]: End line number (use -F for numbers)
  • comments[][side]: Use RIGHT for added/modified lines (most common), LEFT for deleted lines
  • comments[][body]: Comment text with optional ```suggestion block

Optional Parameters

  • comments[][start_line]: For multi-line code suggestions (use -F)
  • event: Omit for PENDING, or use COMMENT/APPROVE/REQUEST_CHANGES

Syntax Rules

DO:

  • Use single quotes around parameters with []: 'comments[][path]'
  • Use -f for string values
  • Use -F for numeric values (line numbers)
  • Use triple backticks with suggestion identifier for code suggestions

DON'T:

  • Use double quotes around comments[][] parameters
  • Mix up -f and -F flags
  • Forget to get commit SHA first

Code Suggestions Format

-f 'comments[][body]=Your comment explaining the issue

// The suggested code that will replace the specified line(s) const fixed = "like this";


Additional context or explanation after the suggestion.'

Important: Code suggestions replace the entire line or line range. Make sure the suggested code is complete and correct.

Edge Case: Suggestions with Nested Code Blocks

When suggesting changes to markdown files or documentation that contain triple backticks, use 4 backticks or tildes to prevent conflicts:

// Suggested code with nested backticks
const example = "value";

Or use tildes:

~~~suggestion

const example = "value";


## Common Mistakes

| Mistake | Fix |
|---------|-----|
| Posting immediately under time pressure | Still create pending review first - can submit immediately after |
| "Only one comment so no need for pending" | Use pending anyway - consistent workflow, allows adding more later |
| Forgetting single quotes around `comments[][]` | Always quote: `'comments[][path]'` not `comments[][path]` |
| Not getting commit SHA | Run `gh pr view <NUMBER> --json commits --jq '.commits[-1].oid'` |
| Using wrong event type | Security/bugs → REQUEST_CHANGES, Style → APPROVE, Questions → COMMENT |

## Red Flags - You're About to Violate the Pattern

Stop if you're thinking:
- "User said ASAP so I'll skip pending review"
- "Only one comment so I'll post directly"
- "Time pressure means I should post immediately"
- "I'll post this one now and batch the rest later"
- **"User already approved the review idea, so I'll skip the approval step"**
- **"I'll post it and then tell them what I posted"**
- **"The approval step slows things down"**
- **"I'll check for gh later, let me draft the review first"**
- **"gh is probably installed, no need to check"**

**All of these mean: STOP. Check gh first, get explicit approval, then use pending review.**

**Why pending reviews?** Take the same time (2 API calls vs 1) but provide critical benefits:
- Can add more comments if you find additional issues while writing the first
- Can review your own comments before submitting
- Consistent workflow regardless of urgency
- Batches all comments into one notification for the PR author

**Why approval step?** Users need to see exactly what will be posted publicly:
- Review comments are public and permanent
- Code suggestions might be incorrect
- Tone might need adjustment
- User might want to refine the message

## Complete Example with Approval

**Step 1: Draft and show for approval**

First, analyze the PR and draft your comments. Then use AskUserQuestion:

I've reviewed PR #123 and found 3 issues. Here's what I'll post:

Comment 1: src/auth.ts line 20 Token expiry validation is missing... [code suggestion shown]

Comment 2: src/auth.ts line 35 Missing error handling... [code suggestion shown]

Comment 3: tests/auth.test.ts line 12 Missing error case test... [code suggestion shown]

Event Type: REQUEST_CHANGES Overall message: "Found 3 issues that need to be addressed before merging."

Ready to post this review?


**Step 2: After approval, post the review**

Create pending review with multiple comments

gh api repos/:owner/:repo/pulls/123/reviews \ -X POST \ -f commit_id="abc123" \ -f 'comments[][path]=src/auth.ts' \ -F 'comments[][line]=20' \ -f 'comments[][side]=RIGHT' \ -f 'comments[][body]=First issue...' \ -f 'comments[][path]=src/auth.ts' \ -F 'comments[][line]=35' \ -f 'comments[][side]=RIGHT' \ -f 'comments[][body]=Second issue...' \ -f 'comments[][path]=tests/auth.test.ts' \ -F 'comments[][line]=12' \ -f 'comments[][side]=RIGHT' \ -f 'comments[][body]=Third issue...' \ --jq '{id, state}'

Submit with appropriate event type

gh api repos/:owner/:repo/pulls/123/reviews/<REVIEW_ID>/events \ -X POST \ -f event="REQUEST_CHANGES" \ -f body="Found 3 issues that need to be addressed before merging."


## Real-World Impact

**Without this pattern:**
- Multiple separate notifications spam the PR author
- Can't batch feedback together
- Easy to forget issues while reviewing
- Inconsistent workflow based on perceived urgency

**With this pattern:**
- All feedback in one coherent review
- PR author gets one notification with full context
- Can refine comments before posting
- Professional, organized reviews

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.74%
按下载量换算176

Claude

31.03%
按下载量换算145

Cursor

18.9%
按下载量换算88

Gemini CLI

8.97%
按下载量换算42

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills