Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

code-review代码审查

Agent Skill

code-review 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

321

周安装

13

GitHub Stars

2

下载量

101
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alexanderguy/skills --skill code-review

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 安装前建议确认权限范围和维护状态,以及是否会触发联网、命令执行或文件读写。
  • 安装方式:通过 npx skills add 从 GitHub 仓库安装。
  • 当前顶部介绍为空,建议结合原始 README 继续核验具体用法。

SKILL.md

Code Review

Use this skill when performing code reviews or pull request reviews.

Base Branch Determination

Before reviewing, you must determine the correct base branch. Use these methods in order of reliability:

Method 1: Check for Associated PR/MR

If the branch has an open pull request or merge request, use the PR's target:

# GitHub
gh pr view --json baseRefName --jq '.baseRefName' 2>/dev/null

# GitLab
glab mr view --output json 2>/dev/null | jq -r '.target_branch'

Method 2: Check Upstream Tracking

If the branch tracks a remote branch that itself branched from somewhere:

git config --get branch.<branch-name>.merge

Method 3: Find Merge Base with Default Branches

Attempt to find a common ancestor with likely default branches:

# Check if main or master exists and find merge-base
for base in main master develop; do
  if git rev-parse --verify "origin/$base" >/dev/null 2>&1; then
    merge_base=$(git merge-base "origin/$base" HEAD)
    echo "$base: $merge_base"
  fi
done

This helps identify which branch HEAD diverged from, but does not guarantee the intent of the branch author.

When Base Cannot Be Determined

If none of the above methods provide a clear answer, do not assume. Ask the user:

I cannot determine which branch this was based off. What branch should I use as the base for comparison? Common options include main, master, or develop.

Proceeding with an incorrect base will cause the review to include out-of-scope changes or miss in-scope changes.

Scope Determination

Focus only on commits that are contained within the branch being reviewed. Use git diff <base-branch>...HEAD to determine what is in scope.

# List commits on the branch
git log --oneline <base-branch>..HEAD

# Get the full diff for review
git diff <base-branch>...HEAD

# Get diff for a specific file
git diff <base-branch>...HEAD -- <file>

Pre-existing Code

If a bug, convention violation, or inconsistent naming existed in code before the branch, do not treat it as a problem in the review. This includes cases where refactored code retains a pre-existing type name, variable name, or pattern that does not match current conventions.

Only evaluate the changes introduced by the branch.

Convention Compliance

All new logic, patterns, and naming introduced by the branch should follow the project's established conventions. Pre-existing code that appears in the diff due to refactoring is exempt from this requirement.

If reviewing TypeScript code, consider loading the typescript-conventions skill for detailed guidance on type patterns, naming, and idioms.

Delegating to Sub-agents

When delegating file review to sub-agents, provide the output of git diff <base-branch>...HEAD -- <file> rather than the full file contents.

Sub-agents that receive full files cannot distinguish branch changes from pre-existing code and will flag out-of-scope issues.

If full files must be provided for context, explicitly instruct the sub-agent which line ranges were modified by the branch and that only those ranges are in scope.

Test Coverage Philosophy

Do not request additional test coverage for functionality provided by external libraries. Focus test coverage requests on:

  • Business logic and domain-specific validation
  • Integration points between components
  • Error handling paths and edge cases
  • Custom algorithms and data transformations

Trust well-maintained libraries to do their job. If a library's behavior needs testing, that suggests reconsidering whether to use that library.

Signal Over Noise

A review should help the author, not burden them. Do not raise issues that are not important to the code being reviewed. Specifically:

  • Do not flag hypothetical problems in unlikely scenarios that the code does not need to handle today or in the near future.
  • Do flag architectural choices that would limit or constrain future implementations, even if they work fine today.
  • Do not leave minor stylistic nits that have no impact on correctness, readability, or maintainability.
  • Do not make vague observations like "this could be cleaner" without a concrete reason it matters.

If something should be fixed, say so directly. If it's not worth fixing, don't bring it up.

Review Checklist

  1. Determine the base branch using the methods in "Base Branch Determination"
  2. Run git log --oneline <base>..HEAD to understand the scope
  3. Run git diff <base>...HEAD --stat to see which files changed
  4. Review each changed file, focusing only on lines modified by the branch
  5. Check that new code follows project conventions
  6. Summarize findings with specific file:line references

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.36%
按下载量换算38

Claude

30.99%
按下载量换算31

Cursor

17.41%
按下载量换算18

Gemini CLI

8.6%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills