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

code-review代码审查

Agent Skill

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

总安装

512

周安装

22

GitHub Stars

4

下载量

180
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/89jobrien/steve --skill code-review

简介

提供代码审查能力,聚焦代码质量、安全漏洞和维护性分析。

  • 适用于合并前代码检查、安全审计和性能优化场景。
  • 通过分析 git diff 和修改文件提供优先级反馈建议。
  • 安装需确认权限范围,注意是否会触发联网或命令执行。
  • code-review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Code Review

This skill provides expert code review capabilities focusing on code quality, security vulnerabilities, and maintainability. It analyzes code changes and provides prioritized, actionable feedback.

When to Use This Skill

  • After writing or modifying code to ensure quality standards
  • Before merging pull requests or deploying changes
  • When conducting security audits or vulnerability assessments
  • When establishing code quality standards for a project
  • When reviewing code for performance optimizations
  • When ensuring code follows project conventions and best practices

What This Skill Does

  1. Analyzes Code Changes: Reviews git diffs and modified files to understand what changed
  2. Security Auditing: Identifies exposed secrets, API keys, and security vulnerabilities
  3. Quality Assessment: Evaluates code readability, maintainability, and best practices
  4. Performance Review: Identifies potential performance issues and optimization opportunities
  5. Standards Compliance: Ensures code follows project conventions and style guidelines
  6. Prioritized Feedback: Organizes findings by severity (Critical, Warnings, Suggestions)

How to Use

Basic Code Review

Review the recent code changes in this branch
Check this file for security issues and code quality

Review Specific Files

Review src/auth.js for security vulnerabilities
Review the changes in this pull request

Review Process

1. Analyze Changes

When invoked:

  1. Get Recent Changes: Run git diff to see what changed git diff $(git merge-base HEAD main)..HEAD
  2. Focus on Modified Files: Prioritize files with actual changes
  3. Review Context: Understand the purpose of changes from commit messages or conversation

2. Review Checklist

For each file, check:

Code Quality:

  • Code is simple and readable
  • Functions and variables are well-named
  • No duplicated code
  • Proper error handling
  • Good test coverage
  • Performance considerations addressed

Security:

  • No exposed secrets or API keys
  • Input validation implemented
  • Proper authentication/authorization
  • Safe handling of user input
  • No SQL injection or XSS vulnerabilities

Maintainability:

  • Consistent code style
  • Appropriate comments (not excessive)
  • Clear function/method structure
  • Proper separation of concerns
  • No unnecessary complexity

Best Practices:

  • Follows framework/library conventions
  • Proper use of design patterns
  • Efficient algorithms and data structures
  • Appropriate use of async/await or promises
  • Proper resource cleanup

3. Organize Feedback

Provide feedback in three priority levels:

Critical Issues (Must Fix):

  • Security vulnerabilities
  • Bugs that will cause failures
  • Code that breaks existing functionality
  • Performance issues that will impact users

Warnings (Should Fix):

  • Code quality issues that affect maintainability
  • Potential bugs or edge cases
  • Performance optimizations
  • Missing error handling
  • Incomplete test coverage

Suggestions (Consider Improving):

  • Code style improvements
  • Refactoring opportunities
  • Documentation enhancements
  • Best practice recommendations
  • Minor optimizations

4. Provide Specific Examples

For each issue found:

  • Location: File path and line number
  • Issue: Clear description of the problem
  • Impact: Why this matters
  • Fix: Specific code example showing how to fix it
  • Rationale: Explanation of why the fix is better

Examples

Example 1: Security Issue Found

Input: Review src/api/auth.js

Output:

## Code Review: src/api/auth.js

### Critical Issues

**1. Exposed API Key**
- **Location**: `src/api/auth.js:23`
- **Issue**: Hardcoded API key in source code
- **Code**:

const API_KEY = "sk_live_1234567890abcdef"; // ❌ Exposed secret


- **Fix**: Use environment variables `const API_KEY = process.env.API_KEY; // ✅ Secure`
- **Impact**: This exposes your API key in version control, allowing unauthorized access

### Warnings

**2. Missing Input Validation**

- **Location**: `src/api/auth.js:45`
- **Issue**: No validation on user input before processing
- **Recommendation**: Add input validation before authentication

### Example 2: Code Quality Review

**Input**: Review recent changes

**Output**:

Code Review Summary

Files Reviewed: 5 Critical Issues: 0 Warnings: 3 Suggestions: 5

Warnings

1. Duplicated Code

  • Files: src/utils/format.js:12-25 and src/utils/display.js:8-21
  • Issue: Same formatting logic duplicated
  • Fix: Extract to shared utility function

2. Missing Error Handling

  • Location: src/api/users.js:34
  • Issue: No try/catch for async operation
  • Fix: Add proper error handling

Suggestions

1. Improve Variable Naming

  • Location: src/components/List.jsx:15
  • Current: const d = data.map(...)
  • Suggested: const formattedItems = data.map(...)

## Reference Files

For comprehensive review checklists, load reference files as needed:

- **`references/review_checklist.md`** - Detailed checklists for security, code quality, performance, testing, documentation, and best practices
- **`references/CODE_ANALYSIS.template.md`** - Code analysis report template with security, performance, and maintainability sections

When conducting thorough reviews, load `references/review_checklist.md` and use the appropriate checklist sections.

## Best Practices

### Review Focus Areas

1. **Security First**: Always check for security vulnerabilities first
2. **Context Matters**: Understand the purpose of changes before reviewing
3. **Be Constructive**: Provide actionable feedback, not just criticism
4. **Prioritize**: Focus on critical issues that must be fixed
5. **Explain Why**: Help developers understand the reasoning behind suggestions

### Review Guidelines

- **Be Specific**: Point to exact lines and provide code examples
- **Be Balanced**: Acknowledge good code as well as issues
- **Be Practical**: Consider the context and urgency of changes
- **Be Educational**: Help developers learn and improve
- **Be Consistent**: Apply the same standards across all reviews

### Common Patterns to Check

**Security:**

- Hardcoded secrets or credentials
- SQL injection vulnerabilities
- XSS vulnerabilities
- Missing authentication/authorization
- Insecure random number generation

**Code Quality:**

- Code duplication
- Magic numbers without constants
- Deeply nested conditionals
- Functions that do too much
- Poor error messages

**Performance:**

- N+1 query problems
- Missing indexes
- Inefficient algorithms
- Unnecessary re-renders (React)
- Memory leaks

## Related Use Cases

- Pre-commit code reviews
- Pull request reviews
- Security audits
- Code quality assessments
- Onboarding new team members
- Establishing coding standards

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Antigravity

26.73%
按下载量换算48

Claude Code

23.65%
按下载量换算43

Codex

18.88%
按下载量换算34

Gemini CLI

10.89%
按下载量换算20

OpenCode

8.36%
按下载量换算15

windsurf

2.91%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills