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

code-review代码审查

Agent Skill

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

总安装

840

周安装

34

GitHub Stars

26

下载量

264
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/outfitter-dev/agents --skill code-review

简介

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

  • 适用于代码审查规范查询、常见缺陷模式识别或评审流程优化等场景。
  • 通过关键词匹配返回审查清单、工具推荐或典型案例。
  • 安装命令为 npx skills add https://github.com/outfitter-dev/agents --skill code-review。
  • 使用前请确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。

SKILL.md

Fresh Eyes Review

Systematic pre-commit quality gate → checklist-based review → findings → summary.

<when_to_use>

  • Pre-commit code review and quality gates
  • Pre-merge pull request reviews
  • Systematic code audits before deployment
  • Quality verification for critical changes
  • Second-opinion review requests

NOT for: quick sanity checks, trivial typo fixes, formatting-only changes

</when_to_use>

<announcement_protocol>

Starting Review

Review Scope: {files/areas under review} Focus Areas: {specific concerns or general quality gate} Checklist: {full or targeted categories}

During Review

Emit findings as discovered:

  • {SEVERITY} {FILE_PATH}:{LINE} — {issue description}
  • Impact: {consequences if shipped}
  • Fix: {concrete remediation}

Completing Review

Review Complete

Findings Summary:

  • ◆◆ Severe: {COUNT} — blocking issues
  • ◆ Moderate: {COUNT} — should fix before merge
  • ◇ Minor: {COUNT} — consider addressing

Recommendation: {ship / fix blockers / needs rework}

{detailed findings below if any found}

</announcement_protocol>

Type Safety

  • ✓ No any types without justification comment
  • ✓ Null/undefined handled explicitly (optional chaining, nullish coalescing)
  • ✓ Type guards used for union types
  • ✓ Discriminated unions for state machines
  • ✓ Generic constraints specified where needed
  • ✓ Return types explicit on public functions
  • ✓ No type assertions without safety comment

Error Handling

  • ✓ All error paths handled (no silent failures)
  • ✓ Meaningful error messages with context
  • ✓ Errors propagated or logged appropriately
  • ✓ Result types used for expected failures
  • ✓ Try/catch blocks have specific error handling
  • ✓ Promise rejections handled
  • ✓ Resource cleanup in finally blocks

Security

  • ✓ User input validated before use
  • ✓ No hardcoded secrets or credentials
  • ✓ Authentication/authorization checks present
  • ✓ Parameterized queries (no SQL injection)
  • ✓ XSS prevention (sanitized output)
  • ✓ CSRF protection where applicable
  • ✓ Sensitive data encrypted/hashed
  • ✓ Rate limiting on public endpoints

Testing

  • ✓ Tests exist for new functionality
  • ✓ Edge cases covered
  • ✓ Error scenarios tested
  • ✓ Actual assertions (not just execution)
  • ✓ No test pollution (proper setup/teardown)
  • ✓ Mocks used appropriately (not overused)
  • ✓ Test names describe behavior
  • ✓ Integration tests for critical paths

Code Quality

  • ✓ Names reveal intent (functions, variables, types)
  • ✓ Functions <50 lines (single responsibility)
  • ✓ Files <500 lines (consider splitting)
  • ✓ No magic numbers (use named constants)
  • ✓ DRY violations eliminated
  • ✓ Nested conditionals <3 deep
  • ✓ Cyclomatic complexity reasonable
  • ✓ Dead code removed

Documentation

  • ✓ Public APIs have JSDoc/TSDoc
  • ✓ Complex algorithms explained
  • ✓ Non-obvious decisions documented
  • ✓ Breaking changes noted
  • ✓ TODOs have context and owner
  • ✓ README updated if behavior changes
  • ✓ Examples provided for complex usage

Performance

  • ✓ No obvious N+1 queries
  • ✓ Appropriate data structures used
  • ✓ Unnecessary allocations avoided
  • ✓ Heavy operations async/batched
  • ✓ Caching where beneficial
  • ✓ Database indexes considered

Rust-Specific (when applicable)

  • rustfmt and clippy passing
  • Result preferred over panic
  • ✓ No unwrap/expect outside tests/startup
  • ✓ Ownership/borrowing idiomatic
  • Send/Sync bounds respected
  • ✓ Unsafe code justified with comments
  • ✓ Proper error types (thiserror/anyhow)

1. Announce (activeForm: Announcing review)

Emit starting protocol:

  • Scope of review
  • Focus areas
  • Checklist approach (full or targeted)

2. Checklist (activeForm: Running checklist review)

Systematically verify each category:

  • Type Safety → Error Handling → Security → Testing → Quality → Docs → Performance
  • Flag violations immediately with severity
  • Note clean areas briefly

3. Deep Dive (activeForm: Investigating findings)

For each finding:

  • Verify it's actually a problem (not false positive)
  • Assess severity and impact
  • Determine concrete fix
  • Check for pattern across codebase

4. Summarize (activeForm: Compiling review summary)

Emit completion protocol:

  • Findings count by severity
  • Recommendation (ship / fix blockers / rework)
  • Detailed findings list
  • Optional: patterns noticed, suggestions for future

Load the maintain-tasks skill for tracking review stages.

<finding_format>

{SEVERITY} {FILE_PATH}:{LINE_RANGE}

Issue: {clear description of problem}

Impact: {consequences if shipped — security risk, runtime error, maintenance burden, etc}

Fix: {concrete steps to remediate}

Pattern: {if issue appears multiple times, note scope}


Example:

◆◆ src/auth/login.ts:45-52

Issue: Password compared using == instead of constant-time comparison

Impact: Timing attack vulnerability — attacker can infer password length and content through response timing

Fix: Use crypto.timingSafeEqual() or bcrypt's built-in comparison

Pattern: Single occurrence


</finding_format>

<severity_guidance>

◆◆ Severe (blocking):

  • Security vulnerabilities
  • Data loss risks
  • Runtime crashes in common paths
  • Breaking changes without migration
  • Test failures or missing critical tests

◆ Moderate (should fix):

  • Type safety violations
  • Unhandled error cases
  • Poor error messages
  • Missing tests for edge cases
  • Significant code quality issues
  • Missing documentation for public APIs

◇ Minor (consider addressing):

  • Code style inconsistencies
  • Overly complex but functional code
  • Minor performance optimizations
  • Documentation improvements
  • TODOs without context
  • Naming improvements

</severity_guidance>

Loop: Scan → Verify → Document → Next category

  1. Announce review — scope, focus, approach
  2. Run checklist — systematically verify each category
  3. Document findings — severity, location, issue, impact, fix
  4. Investigate patterns — does finding repeat? Broader issue?
  5. Deep dive blockers — verify severity assessment, ensure fix is clear
  6. Compile summary — counts by severity, recommendation
  7. Deliver findings — completion protocol with detailed list

At each finding:

  • Verify it's actually a problem
  • Assess impact if shipped
  • Determine concrete fix
  • Note if pattern across files

Before completing review:

Check coverage:

  • ✓ All checklist categories verified?
  • ✓ Both happy path and error paths reviewed?
  • ✓ Tests examined for actual assertions?
  • ✓ Security-sensitive areas given extra scrutiny?

Check findings quality:

  • ✓ Severity accurately assessed?
  • ✓ Impact clearly explained?
  • ✓ Fix actionable and concrete?
  • ✓ False positives eliminated?

Check recommendation:

  • ✓ Aligned with findings severity?
  • ✓ Blockers clearly marked?
  • ✓ Path forward unambiguous?

ALWAYS:

  • Announce review start with scope and focus
  • Run systematic checklist, don't skip categories
  • Emit findings as discovered, don't batch at end
  • Assess severity honestly (err toward caution)
  • Provide concrete fixes, not just complaints
  • Complete with summary and recommendation
  • Mark false positives if checklist item doesn't apply
  • Consider patterns (single issue or systemic?)

NEVER:

  • Skip checklist review for "quick check"
  • Assume code is safe without verification
  • Flag style preferences as blockers
  • Provide vague findings without fix guidance
  • Approve severe findings "for later fix"
  • Complete review without announcement protocol
  • Miss security checks on user input paths
  • Ignore test quality (execution!= validation)

Core methodology:

  • checklist.md — extended checklist details, examples, severity guidance

Related skills:

  • codebase-recon — evidence-based investigation (foundation for review)
  • debugging — structured bug investigation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.22%
按下载量换算75

windsurf

24.34%
按下载量换算64

OpenCode

18.63%
按下载量换算49

Cursor

12.8%
按下载量换算34

Codex

9.55%
按下载量换算25

Antigravity

3.96%
按下载量换算10

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills