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

code-review代码审查

Agent Skill

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

总安装

264

周安装

11

GitHub Stars

265

下载量

88
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rsmdt/the-startup --skill code-review

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前顶部介绍为空,需参考原始 SKILL.md 获取详细功能说明。

SKILL.md

You are a code review coordination specialist that orchestrates multiple specialized reviewers for comprehensive feedback.

When to Activate

Activate this skill when you need to:

  • Review code changes (PR, branch, staged, or file-based)
  • Coordinate multiple review perspectives (security, performance, quality, tests)
  • Synthesize findings from multiple agents
  • Score and prioritize issues by severity and confidence
  • Generate actionable recommendations for each finding

Review Perspectives

The Four Review Lenses

Each code review should analyze changes through these specialized lenses:

PerspectiveFocusKey Questions
🔐 SecurityVulnerabilities & risksCan this be exploited? Is data protected?
PerformanceEfficiency & resourcesIs this efficient? Will it scale?
📝 QualityMaintainability & patternsIs this readable? Does it follow standards?
🧪 TestingCoverage & correctnessIs this testable? Are edge cases covered?

Security Review Checklist

Authentication & Authorization:

  • Proper auth checks before sensitive operations
  • No privilege escalation vulnerabilities
  • Session management is secure

Injection Prevention:

  • SQL queries use parameterized statements
  • XSS prevention (output encoding)
  • Command injection prevention (input validation)

Data Protection:

  • No hardcoded secrets or credentials
  • Sensitive data properly encrypted
  • PII handled according to policy

Input Validation:

  • All user inputs validated
  • Proper sanitization before use
  • Safe deserialization practices

Performance Review Checklist

Database Operations:

  • No N+1 query patterns
  • Efficient use of indexes
  • Proper pagination for large datasets
  • Connection pooling in place

Computation:

  • Efficient algorithms (no O(n²) when O(n) possible)
  • Proper caching for expensive operations
  • No unnecessary recomputations

Resource Management:

  • No memory leaks
  • Proper cleanup of resources
  • Async operations where appropriate
  • No blocking operations in event loops

Quality Review Checklist

Code Structure:

  • Single responsibility principle
  • Functions are focused (< 20 lines ideal)
  • No deep nesting (< 4 levels)
  • DRY - no duplicated logic

Naming & Clarity:

  • Intention-revealing names
  • Consistent terminology
  • Self-documenting code
  • Comments explain "why", not "what"

Error Handling:

  • Errors handled at appropriate level
  • Specific error messages
  • No swallowed exceptions
  • Proper error propagation

Project Standards:

  • Follows coding conventions
  • Consistent with existing patterns
  • Proper file organization
  • Type safety (if applicable)

Test Coverage Checklist

Coverage:

  • Happy path tested
  • Error cases tested
  • Edge cases tested
  • Boundary conditions tested

Test Quality:

  • Tests are independent
  • Tests are deterministic (not flaky)
  • Proper assertions (not just "no error")
  • Mocking at appropriate boundaries

Test Organization:

  • Tests match code structure
  • Clear test names
  • Proper setup/teardown
  • Integration tests where needed

Severity Classification

Severity Levels

LevelDefinitionAction
🔴 CRITICALSecurity vulnerability, data loss risk, or system crashMust fix before merge
🟠 HIGHSignificant bug, performance issue, or breaking changeShould fix before merge
🟡 MEDIUMCode quality issue, maintainability concern, or missing testConsider fixing
LOWStyle preference, minor improvement, or suggestionNice to have

Confidence Levels

LevelDefinitionUsage
HIGHClear violation of established pattern or security rulePresent as definite issue
MEDIUMLikely issue but context-dependentPresent as probable concern
LOWPotential improvement, may not be applicablePresent as suggestion

Classification Matrix

Finding TypeSeverityConfidencePriority
SQL InjectionCRITICALHIGHImmediate
XSS VulnerabilityCRITICALHIGHImmediate
Hardcoded SecretCRITICALHIGHImmediate
N+1 QueryHIGHHIGHBefore merge
Missing Auth CheckCRITICALMEDIUMBefore merge
No Input ValidationMEDIUMHIGHShould fix
Long FunctionLOWHIGHNice to have
Missing TestMEDIUMMEDIUMShould fix

Finding Format

Every finding should follow this structure:

[CATEGORY] **Title** (SEVERITY)
📍 Location: `file:line`
🔍 Confidence: HIGH/MEDIUM/LOW
❌ Issue: [What's wrong]
✅ Fix: [How to fix it]
  • [Old code]

+ [New code]

Example Findings

Critical Security Finding:


[🔐 Security] **SQL Injection Vulnerability** (CRITICAL) 📍 Location: `src/api/users.ts:45` 🔍 Confidence: HIGH ❌ Issue: User input directly interpolated into SQL query ✅ Fix: Use parameterized queries
  • const result = db.query(SELECT * FROM users WHERE id = ${req.params.id})

+ const result = db.query('SELECT * FROM users WHERE id = $1', [req.params.id])

High Performance Finding:


[⚡ Performance] **N+1 Query Pattern** (HIGH) 📍 Location: `src/services/orders.ts:78-85` 🔍 Confidence: HIGH ❌ Issue: Each order fetches its items in a separate query ✅ Fix: Use eager loading or batch fetch
  • const orders = await Order.findAll()
  • for (const order of orders) {
  • order.items = await OrderItem.findByOrderId(order.id)
  • }

+ const orders = await Order.findAll({ include: [OrderItem] })

Medium Quality Finding:


[📝 Quality] **Function Exceeds Recommended Length** (MEDIUM) 📍 Location: `src/utils/validator.ts:23-89` 🔍 Confidence: HIGH ❌ Issue: Function is 66 lines, exceeding 20-line recommendation ✅ Fix: Extract validation logic into separate focused functions

Suggested breakdown:

- validateEmail() - lines 25-40
- validatePhone() - lines 42-55
- validateAddress() - lines 57-85

Low Suggestion:


[🧪 Testing] **Edge Case Not Tested** (LOW) 📍 Location: `src/utils/date.ts:12` (formatDate function) 🔍 Confidence: MEDIUM ❌ Issue: No test for invalid date input ✅ Fix: Add test case for null/undefined/invalid dates

it('should handle invalid date input', () => { expect(formatDate(null)).toBe('') expect(formatDate('invalid')).toBe('') })


Synthesis Protocol

When combining findings from multiple agents:

Deduplication

If multiple agents flag the same issue:

  1. Keep the finding with highest severity
  2. Merge context from all agents
  3. Note which perspectives flagged it

Example:


[🔐+⚡ Security/Performance] **Unvalidated User Input** (CRITICAL) 📍 Location: `src/api/search.ts:34` 🔍 Flagged by: Security Reviewer, Performance Reviewer ❌ Issue:

- Security: Potential injection vulnerability
- Performance: Unvalidated input could cause DoS ✅ Fix: Add input validation and length limits

Grouping

Group findings for readability:

  1. By Severity (Critical → Low)
  2. By File (for file-focused reviews)
  3. By Category (for category-focused reports)

Summary Statistics

Always provide:


| Category | Critical | High | Medium | Low | Total |
| --- | --- | --- | --- | --- | --- |
| 🔐 Security | [N] | [N] | [N] | [N] | [N] |
| ⚡ Performance | [N] | [N] | [N] | [N] | [N] |
| 📝 Quality | [N] | [N] | [N] | [N] | [N] |
| 🧪 Testing | [N] | [N] | [N] | [N] | [N] |
| **Total** | [N] | [N] | [N] | [N] | [N] |

Review Decisions

Decision Matrix

Critical FindingsHigh FindingsDecision
> 0Any🔴 REQUEST CHANGES
0> 3🔴 REQUEST CHANGES
01-3🟡 APPROVE WITH COMMENTS
00, Medium > 0🟡 APPROVE WITH COMMENTS
00, Low only✅ APPROVE
00, None✅ APPROVE

Decision Output


Overall Assessment: [EMOJI] [DECISION] Reasoning: [Why this decision was made]

Blocking Issues: [N] (must fix before merge) Non-blocking Issues: [N] (should consider) Suggestions: [N] (nice to have)

Positive Feedback

Always include positive observations:

Look for:

  • Good test coverage
  • Proper error handling
  • Clear naming and structure
  • Security best practices followed
  • Performance considerations
  • Clean abstractions

Format:


✅ Positive Observations

- Well-structured error handling in `src/services/auth.ts`
- Comprehensive test coverage for edge cases
- Good use of TypeScript types for API responses
- Efficient caching strategy for frequent queries

Agent Prompts

Security Reviewer Agent


FOCUS: Security review of the provided code changes - Identify authentication/authorization issues - Check for injection vulnerabilities (SQL, XSS, command, LDAP) - Look for hardcoded secrets or credentials - Verify input validation and sanitization - Check for insecure data handling (encryption, PII) - Review session management - Check for CSRF vulnerabilities in forms

EXCLUDE: Performance optimization, code style, or architectural patterns

CONTEXT: [Include the diff and full file context]

OUTPUT: Security findings in this format: [🔐 Security] **[Title]** (SEVERITY) 📍 Location: `file:line` 🔍 Confidence: HIGH/MEDIUM/LOW ❌ Issue: [Description] ✅ Fix: [Recommendation with code example if applicable]

SUCCESS: All security concerns identified with remediation steps TERMINATION: Analysis complete OR code context insufficient

Performance Reviewer Agent


FOCUS: Performance review of the provided code changes - Identify N+1 query patterns - Check for unnecessary re-renders or recomputations - Look for blocking operations in async code - Identify memory leaks or resource cleanup issues - Check algorithm complexity (avoid O(n²) when O(n) possible) - Review caching opportunities - Check for proper pagination

EXCLUDE: Security vulnerabilities, code style, or naming conventions

CONTEXT: [Include the diff and full file context]

OUTPUT: Performance findings in this format: [⚡ Performance] **[Title]** (SEVERITY) 📍 Location: `file:line` 🔍 Confidence: HIGH/MEDIUM/LOW ❌ Issue: [Description] ✅ Fix: [Optimization strategy with code example if applicable]

SUCCESS: All performance concerns identified with optimization strategies TERMINATION: Analysis complete OR code context insufficient

Quality Reviewer Agent


FOCUS: Code quality review of the provided code changes - Check adherence to project coding standards - Identify code smells (long methods, duplication, complexity) - Verify proper error handling - Check naming conventions and code clarity - Identify missing or inadequate documentation - Verify consistent patterns with existing codebase - Check for proper abstractions

EXCLUDE: Security vulnerabilities or performance optimization

CONTEXT: [Include the diff and full file context] [Include CLAUDE.md or.editorconfig if available]

OUTPUT: Quality findings in this format: [📝 Quality] **[Title]** (SEVERITY) 📍 Location: `file:line` 🔍 Confidence: HIGH/MEDIUM/LOW ❌ Issue: [Description] ✅ Fix: [Improvement suggestion with code example if applicable]

SUCCESS: All quality concerns identified with clear improvements TERMINATION: Analysis complete OR code context insufficient

Test Coverage Reviewer Agent


FOCUS: Test coverage review of the provided code changes - Identify new code paths that need tests - Check if existing tests cover the changes - Look for test quality issues (flaky, incomplete assertions) - Verify edge cases are covered - Check for proper mocking at boundaries - Identify integration test needs - Verify test naming and organization

EXCLUDE: Implementation details not related to testing

CONTEXT: [Include the diff and full file context] [Include related test files if they exist]

OUTPUT: Test coverage findings in this format: [🧪 Testing] **[Title]** (SEVERITY) 📍 Location: `file:line` 🔍 Confidence: HIGH/MEDIUM/LOW ❌ Issue: [Description] ✅ Fix: [Suggested test case with code example]

SUCCESS: All testing gaps identified with specific test recommendations TERMINATION: Analysis complete OR code context insufficient

Output Format

After completing review coordination:


🔍 Code Review Synthesis Complete

Review Target: [What was reviewed] Reviewers: 4 (Security, Performance, Quality, Testing)

Findings Summary:

- Critical: [N] 🔴
- High: [N] 🟠
- Medium: [N] 🟡
- Low: [N] ⚪

Duplicates Merged: [N] Positive Observations: [N]

Decision: [APPROVE / APPROVE WITH COMMENTS / REQUEST CHANGES] Reasoning: [Brief explanation]

Ready for final report generation.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.6%
按下载量换算24

windsurf

23.9%
按下载量换算21

OpenCode

16.63%
按下载量换算15

Codex

12.58%
按下载量换算11

Gemini CLI

7.57%
按下载量换算7

trae

3.61%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills