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

code-review代码审查

Agent Skill

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

总安装

269

周安装

11

GitHub Stars

公开资料未说明

下载量

86
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于查找、检索和筛选相关信息,支持关键词和任务场景定位。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速获取候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装方式:npx skills add https://github.com/hifisaputra/skills --skill code-review。
  • 建议确认权限范围、维护状态及是否触发联网或文件读写。

SKILL.md

Code Review

Thorough review of a pull request. Checks for bugs, security issues, performance problems, style consistency, test coverage, and verifies the PR actually addresses its linked issue.

Inputs

This skill expects either:

  • A PR number or URL
  • A diff piped in or referenced by the caller

If called by another skill (e.g., process-reviews), it receives the PR number and context. If called standalone, ask for the PR number.

Step 1: Gather context

Resolve repo info

REPO=$(gh repo view --json nameWithOwner -q .nameWithOwner)

Read PR metadata

gh pr view <number> --json title,body,baseRefName,headRefName,files,additions,deletions

Read the linked issue

Extract the issue number from the PR body (look for Closes #N, Fixes #N, Resolves #N). If found:

gh issue view <issue-number> --json title,body,labels

This is used later to verify the PR actually addresses the issue requirements.

Load stack-specific review checklists

Check the project root for framework config files and load the corresponding review checklist:

  • next.config.* detected → read references/nextjs.md (Server/Client boundary mistakes, Server Action vulnerabilities, caching bugs, async params)
  • wrangler.toml / wrangler.jsonc / wrangler.json detected → read references/cloudflare.md (Workers runtime violations, D1/R2/KV misuse, queue idempotency, binding access patterns)

Load both if both are present (Next.js on Cloudflare Workers — the Cloudflare reference has a dedicated section for this combo). Use the checklists to catch stack-specific issues that a generic review would miss.

Get the diff

gh pr diff <number>

For re-reviews (when the caller indicates previous feedback exists), also read previous review comments to check if feedback was addressed:

gh pr view <number> --comments
gh api repos/$REPO/pulls/<number>/comments

Read surrounding source code

The diff alone is not enough. For each changed file, read the surrounding context to understand:

  • Function/class scope around the changes
  • Imports and dependencies
  • How the changed code is used elsewhere
gh pr view <number> --json files --jq '.files[].path'

Read at least the full functions/classes where changes were made.

Step 2: Analyze

Review the changes thoroughly across all of these dimensions:

Correctness

  • Logic errors, off-by-one, null/undefined risks
  • Race conditions, deadlocks
  • Error handling gaps (uncaught promises, missing try/catch)
  • Edge cases not covered

Security

  • SQL injection, XSS, command injection
  • Auth/authz issues (missing permission checks)
  • Secret exposure (API keys, tokens in code)
  • OWASP top 10 concerns
  • Unsafe deserialization, path traversal

Performance

  • N+1 queries
  • Unnecessary allocations or copies
  • Missing database indexes for new queries
  • Unbounded loops or result sets
  • Large payloads without pagination

Style and consistency

  • Naming consistency with existing codebase patterns
  • Code structure matching project conventions
  • Duplicated logic that already exists elsewhere
  • Overly complex code that could be simplified

Test coverage

  • Were tests added for new behavior?
  • Do tests cover edge cases and error paths?
  • Are tests testing behavior (not implementation details)?
  • For bug fixes: is there a regression test?

Issue alignment

If a linked issue was found, verify:

  • Does the PR actually implement what the issue asked for?
  • Are there requirements in the issue that the PR doesn't address?
  • Did the PR add scope beyond what the issue requested?

Flag any gaps between the issue requirements and the PR implementation.

Step 3: Categorize findings

Group each finding by severity:

  • Bug — incorrect behavior, will cause issues in production
  • Security — vulnerability that needs fixing before merge
  • Performance — measurable performance impact
  • Suggestion — improvement that would make the code better but isn't blocking
  • Nit — minor style/preference issue
  • Question — something unclear that the author should clarify

Step 4: Post the review

Format inline comments

For each finding, prepare an inline comment on the specific file and line:

[
  {
    "path": "src/api/users.ts",
    "line": 42,
    "body": "**Bug**: This query doesn't handle the case where `userId` is undefined. `env.DB.prepare()` will bind `undefined` as a literal string.\n\n```suggestion\nif (!userId) return Response.json({ error: 'Missing userId' }, { status: 400 })\n```"
  }
]

Post as a review

Use the GitHub review API to post all comments atomically as a single review:

gh api repos/$REPO/pulls/<number>/reviews \
  --method POST \
  -f event="COMMENT" \
  -f body="$(cat <<'EOF'
**[AI]** ## Code Review

### Summary
<1-2 sentence overview of the changes and overall quality>

### Findings
<count by severity — e.g., "1 bug, 2 suggestions, 1 nit">

### Issue Alignment
<whether the PR addresses the linked issue, any gaps>

---
*Automated review — a human reviewer should verify these findings before merging.*
EOF
)" \
  --jq '.id'

Post inline comments via the review. If the gh api call with inline comments is too complex, fall back to individual gh pr comment calls for each finding, clearly referencing the file and line.

Review verdict

Return one of these verdicts to the caller:

  • approve — no bugs or security issues found (suggestions/nits don't block)
  • request-changes — bugs, security issues, or missing issue requirements found

Always use COMMENT event, never REQUEST_CHANGES or APPROVE — the AI signals its opinion through labels, but the human makes the final call on the PR.

Re-review behavior

When reviewing a PR that was previously reviewed (indicated by the caller or by existing **[AI]** comments):

  1. Read previous review comments to understand what was flagged
  2. Check if each previous finding was addressed in the new commits
  3. Flag any previous findings that were NOT addressed
  4. Review new changes for fresh issues
  5. Post a re-review summary noting what was resolved and any remaining/new issues

Safety

  • Never use APPROVE or REQUEST_CHANGES events — only COMMENT
  • Never merge PRs
  • Never push changes to the PR branch
  • All comments must start with **[AI]**

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36%
按下载量换算31

Claude

30.05%
按下载量换算26

Cursor

19.62%
按下载量换算17

Gemini CLI

9.87%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills