Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计通过

code-review-checklist代码审查清单

Agent Skill

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

总安装

570

周安装

24

GitHub Stars

8

下载量

380
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/phrazzld/claude-config --skill code-review-checklist

简介

code-review-checklist 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于研究检索类任务,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前分类为研究检索,支持主流 Agent 宿主平台。

SKILL.md

Code Review Checklist

Fast, focused checklist for reviewing code changes. Designed to complete in <5 minutes for typical PRs.

Review Mindset

Before reviewing, adopt the right lens:

The Ousterhout Question: Does this change fight complexity or add to it?

  • Hunt for shallow modules (interface ≈ implementation)
  • Hunt for information leakage
  • Hunt for generic names (Manager, Helper, Util, Handler)
  • Hunt for pass-through methods

The Torvalds Standard: "The most important thing is to not make the code worse."

  • Good code handles all cases uniformly
  • Eliminate edge cases through better abstractions
  • If nesting is deep, the structure is wrong

CRITICAL: You are capable of detecting subtle design flaws that automated tools miss. Don't just check syntax—evaluate whether this change makes the codebase easier or harder to understand and modify. That's the real job.

How to Use This Checklist

  • For PR reviews: Work through categories, flag issues, suggest improvements
  • For self-review: Before requesting review, check your own changes
  • For pairing: Use as discussion guide during pair programming

Not every item applies to every PR. Use judgment. Small fixes may skip entire categories.


1. Purpose & Design

Does this change solve the right problem in the right way?

  • Does this change solve the stated problem?
  • Is the approach appropriate for the problem scope?
  • Are there simpler alternatives that were considered?
  • Does this fit with existing architecture patterns?

Red flags:

  • Over-engineered solution for simple problem
  • Doesn't address root cause (treats symptom)
  • Introduces new pattern when existing one would work

2. Code Quality

Is the code readable, maintainable, and simple?

  • Are names clear and intention-revealing?
  • Is the code self-documenting (minimal comments needed)?
  • Are functions/modules focused on single responsibility?
  • Is complexity managed (no deep nesting, long functions)?
  • Are magic numbers/strings extracted to constants?

Examples:

Poor naming:

function proc(d: any) { ... }
const x = getUserData()

Clear naming:

function processPayment(data: PaymentData) { ... }
const activeUsers = getUserData()

Deep nesting:

if (user) {
  if (user.isActive) {
    if (user.hasPermission) {
      // deeply nested logic
    }
  }
}

Guard clauses:

if (!user) return
if (!user.isActive) return
if (!user.hasPermission) return
// flat logic

Red flags:

  • Generic names (Manager, Helper, Util, Handler)
  • Functions over 50 lines
  • Nesting deeper than 3 levels
  • Unclear variable purposes

3. Correctness

Does the code work correctly under all conditions?

  • Are edge cases handled (null, empty, boundary values)?
  • Is error handling appropriate and informative?
  • Are async operations handled correctly (race conditions, timeouts)?
  • Are types used correctly (no unsafe casts, any abuse)?
  • Does the logic match the requirements?

Edge cases to check:

  • Empty arrays/strings
  • Null/undefined values
  • Boundary values (0, -1, MAX_INT)
  • Concurrent operations
  • Network failures

Examples:

Missing edge case:

function getFirstUser(users: User[]) {
  return users[0].name  // Crashes on empty array
}

Edge case handled:

function getFirstUser(users: User[]) {
  return users[0]?.name ?? 'No users'
}

Type abuse:

const data: any = await fetchData()
const userId = (data as User).id  // Unsafe

Type safety:

const data = await fetchData()
if (!isUser(data)) throw new Error('Invalid user data')
const userId = data.id

Red flags:

  • No null checks
  • Ignored promise rejections
  • Type assertions without validation
  • Assumes happy path only

4. Security

Are there security vulnerabilities?

  • Is user input validated and sanitized?
  • Are secrets/credentials handled securely (no hardcoding)?
  • Is authentication/authorization checked where needed?
  • Are SQL/command injection risks mitigated?

Common vulnerabilities:

SQL injection:

db.query(`SELECT * FROM users WHERE id = ${userId}`)

Parameterized query:

db.query('SELECT * FROM users WHERE id = $1', [userId])

Hardcoded secret:

const API_KEY = 'sk_live_abc123...'

Environment variable:

const API_KEY = process.env.API_KEY
if (!API_KEY) throw new Error('API_KEY not configured')

Missing auth check:

async function deleteUser(userId: string) {
  await db.users.delete(userId)
}

Auth check:

async function deleteUser(userId: string, requestingUserId: string) {
  if (!canDeleteUser(requestingUserId, userId)) {
    throw new UnauthorizedError()
  }
  await db.users.delete(userId)
}

Red flags:

  • Direct SQL string concatenation
  • Secrets in code
  • Missing auth checks on sensitive operations
  • Unvalidated redirects or file paths

5. Performance

Are there obvious performance issues?

  • Are there obvious performance issues (N+1 queries, unnecessary loops)?
  • Is data fetching efficient (pagination, caching considered)?
  • Are re-renders/re-computations minimized (React: memo, useMemo)?

Common issues:

N+1 query:

for (const user of users) {
  user.posts = await db.posts.find({ userId: user.id })
}

Batch query:

const userIds = users.map(u => u.id)
const posts = await db.posts.find({ userId: { $in: userIds } })
const postsByUser = groupBy(posts, 'userId')
users.forEach(u => u.posts = postsByUser[u.id] || [])

Unnecessary re-renders:

function UserList({ users }: Props) {
  const sorted = users.sort((a, b) => a.name.localeCompare(b.name))
  // Re-sorts on every render
}

Memoized computation:

function UserList({ users }: Props) {
  const sorted = useMemo(
    () => users.sort((a, b) => a.name.localeCompare(b.name)),
    [users]
  )
}

Red flags:

  • Queries in loops
  • Missing indexes on filtered/sorted columns
  • Large payloads without pagination
  • Expensive computations without memoization

6. Testing

Are changes adequately tested?

  • Are critical paths tested (happy path + key errors)?
  • Do tests verify behavior, not implementation details?
  • Are test names clear about what they verify?

Good test characteristics:

Clear test name:

it('should return 404 when user not found', async () => {
  const response = await request(app).get('/users/999')
  expect(response.status).toBe(404)
})

Tests behavior:

it('should disable submit button while submitting', async () => {
  render(<Form />)
  const button = screen.getByRole('button', { name: 'Submit' })
  await userEvent.click(button)
  expect(button).toBeDisabled()
})

Tests implementation:

it('should call setState when button clicked', () => {
  const mockSetState = jest.fn()
  // Testing implementation detail, not behavior
})

Red flags:

  • No tests for new feature
  • Tests only test happy path
  • Tests coupled to implementation
  • Unclear what test verifies

7. Documentation

Is the change adequately documented?

  • Are non-obvious decisions explained in comments?
  • Is user-facing documentation updated (README, API docs)?
  • Are breaking changes clearly documented?

When to comment:

Explain "why":

// Use exponential backoff to avoid overwhelming API during outages
const retryDelay = Math.pow(2, attempt) * 1000

Document non-obvious behavior:

// Returns null instead of throwing to allow graceful degradation
// when feature flag service is unavailable
function getFeatureFlag(name: string): boolean | null { ... }

Don't explain "what":

// Increment counter by 1
counter += 1

Documentation updates needed:

  • New public API → Update API docs
  • Changed behavior → Update README
  • Breaking change → Update CHANGELOG, migration guide
  • New environment variable → Update deployment docs

Red flags:

  • Breaking change without migration guide
  • New feature without usage examples
  • Complex algorithm without explanation
  • Changed behavior without updating docs

Quick Decision Guide

Stop and Fix Now (Block PR)

  • Security vulnerabilities
  • Data loss scenarios
  • Breaking changes without migration path
  • Incorrect logic on critical path

Request Changes (Strong Suggestion)

  • Poor naming (hard to understand)
  • Missing error handling
  • No tests for new behavior
  • Performance issues (N+1, obvious bottlenecks)

Suggest Improvements (Nice to Have)

  • Could be simpler
  • Could have better names
  • Could use helper function
  • Could add more tests

Approve (Minor or Nitpick)

  • Style preferences
  • Alternative approaches (both work)
  • Optional refactoring opportunities

Philosophy

Good code review is:

  • Fast: <5 minutes for typical PR
  • Focused: Critical issues first, nitpicks last
  • Constructive: Suggest improvements, don't just criticize
  • Collaborative: Discussion, not dictation

Good code review is NOT:

  • Gatekeeping or showing off knowledge
  • Rewriting in your preferred style
  • Blocking on personal preferences
  • Testing (that's CI's job)

Remember: You're reviewing to help ship better code, not perfect code.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

qoder

29.17%
按下载量换算111

Antigravity

21.89%
按下载量换算83

kilo

17.56%
按下载量换算67

Claude Code

11.12%
按下载量换算42

windsurf

7.56%
按下载量换算29

Codex

3.39%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills