Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计提醒

code-review代码审查

Agent Skill

code-review 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

791

周安装

32

GitHub Stars

12

下载量

248
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/letta-ai/letta-code-action --skill code-review

简介

code-review 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态,以及是否触发联网或文件操作。
  • 建议结合原始 README 和仓库内容核验具体用法和功能边界。

SKILL.md

Code Review Skill

You are handling a PR code review interaction. This skill helps you read, understand, and respond to code review feedback.

When This Skill Applies

  • Triggered by pull_request_review or pull_request_review_comment events
  • User asks you to address review feedback
  • User requests a code review of their changes

Reading Review Comments

Get All Reviews on a PR

# List all reviews (approved, changes requested, commented)
gh api repos/$GITHUB_REPOSITORY/pulls/<number>/reviews

# Get a specific review's comments
gh api repos/$GITHUB_REPOSITORY/pulls/<number>/reviews/<review_id>/comments

Get Review Comments (Line-Level Feedback)

# All line-level review comments on the PR
gh api repos/$GITHUB_REPOSITORY/pulls/<number>/comments

# Filter by specific path
gh api repos/$GITHUB_REPOSITORY/pulls/<number>/comments | jq '.[] | select(.path == "src/example.ts")'

Understanding Review Comment Structure

Key fields in review comments:

  • path: File being commented on
  • line / original_line: Line number in the diff
  • body: The reviewer's comment text
  • diff_hunk: Code context around the comment
  • in_reply_to_id: If this is a reply to another comment

Responding to Review Feedback

Workflow for Addressing Feedback

  1. Read the review comments to understand what changes are requested
  2. Read the relevant files using the paths from the comments
  3. Make the requested changes using Edit tool
  4. Commit and push to update the PR
  5. Update your tracking comment to summarize what was addressed

Replying to Review Comments

# Reply to a specific review comment
gh api repos/$GITHUB_REPOSITORY/pulls/<number>/comments \
  -X POST \
  -f body="Fixed in the latest commit" \
  -f in_reply_to=<comment_id>

Marking Conversations as Resolved

After addressing feedback, the reviewer typically resolves the conversation. You can indicate you've addressed it by:

  1. Replying to the comment explaining what you changed
  2. Updating your tracking comment with a summary

Providing Code Review Feedback

When asked to review code changes:

Quick Review Checklist

  • Correctness: Does the code do what it's supposed to?
  • Security: Are there any security vulnerabilities?
  • Performance: Are there obvious performance issues?
  • Readability: Is the code clear and maintainable?
  • Tests: Are changes tested appropriately?

Viewing PR Changes

# View the diff
gh pr diff <number> --repo $GITHUB_REPOSITORY

# View changed files list
gh pr view <number> --repo $GITHUB_REPOSITORY --json files

# Compare with base branch (use two dots for shallow clones in GitHub Actions)
git diff origin/$BASE_BRANCH..HEAD

Providing Feedback

Post your review feedback to your tracking comment. Structure it clearly:

  • Group feedback by file
  • Reference specific line numbers
  • Distinguish between required changes and suggestions
  • Be constructive and specific

Submitting Interactive Reviews

Use gh pr review to submit formal GitHub reviews that appear in the PR's review UI.

Approve a PR

gh pr review <number> --approve --body "LGTM! Changes look good."

Request Changes

gh pr review <number> --request-changes --body "Please address the following issues..."

Leave a Comment Review (without approval/rejection)

gh pr review <number> --comment --body "Some observations about the code..."

Adding Line-Level Comments

To add comments on specific lines of code (shown inline in GitHub's diff view):

Create a Review with Line Comments

# First, get the latest commit SHA
COMMIT_SHA=$(gh pr view <number> --json headRefOid --jq '.headRefOid')

# Create a review comment on a specific position in the diff
# Note: position is the line number in the diff (not the file), starting from 1
gh api repos/$GITHUB_REPOSITORY/pulls/<number>/comments \
  -X POST \
  -f body="Consider using a more descriptive variable name here" \
  -f commit_id="$COMMIT_SHA" \
  -f path="src/example.ts" \
  -F position=10

Key Fields for Line Comments

  • commit_id: The SHA of the commit to comment on (use latest)
  • path: File path relative to repo root
  • position: Position in the diff (line number in the diff hunk, starting at 1)
  • body: Your comment text

Note: The position is the line number within the diff, not the line number in the file. Count lines from the start of the diff hunk.

Iterating on Changes

When you need to make additional changes after initial feedback:

# Ensure you're on the PR branch
gh pr checkout <number>

# Make changes, then commit
git add <files>
git commit -m "fix: address review feedback"

# Push to update the PR
git push origin HEAD

Important Notes

  1. Read before responding - Always read the full review context before making changes
  2. Address all comments - Don't leave feedback unaddressed
  3. Communicate clearly - Update your tracking comment to show what you've addressed
  4. Test your changes - Run tests after making review-requested changes

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenCode

27.22%
按下载量换算68

Claude Code

21.83%
按下载量换算54

Cursor

17.64%
按下载量换算44

Gemini CLI

10.94%
按下载量换算27

Antigravity

6.91%
按下载量换算17

Codex

3.52%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills