Token导航 LogoToken导航TokenDH.com
开发需要联网unknown未标认证来源可访问许可证需确认审计未展示

code-review代码审查

Agent Skill

code-review 用于补充开发相关能力,适合在 Local Agent 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

198

周安装

8

下载量

62
Local Agent

安装说明

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

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

code-review 用于代码质量检查与最佳实践建议。

  • 可识别潜在 Bug、安全漏洞或性能瓶颈问题。
  • 支持主流编程语言,但覆盖范围取决于规则库完整性。
  • 不替代人工审查,仅作为辅助检测手段使用。code-review 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 对私有仓库访问需配置有效认证凭据并限制权限范围。

SKILL.md

Code Review

Checklists, patterns, and feedback templates for effective code reviews.

Quick Review Checklist

Correctness
[ ] Does the code do what it's supposed to?
[ ] Are edge cases handled?
[ ] Are error conditions handled gracefully?
[ ] Are there any off-by-one errors?
[ ] Are null/undefined cases handled?

Security
[ ] No hardcoded secrets, keys, or passwords
[ ] Input validation on all user data
[ ] No SQL injection, XSS, or command injection
[ ] Authentication/authorization checks in place
[ ] Sensitive data not logged or exposed

Performance
[ ] No unnecessary database queries (N+1)
[ ] No memory leaks (event listeners, timers)
[ ] Large lists paginated, not loaded entirely
[ ] Expensive operations cached when appropriate
[ ] No blocking operations on main thread

Maintainability
[ ] Code is readable without extensive comments
[ ] Functions do one thing (single responsibility)
[ ] No duplicated logic (DRY where it makes sense)
[ ] Consistent naming conventions
[ ] No dead code or unused imports

Testing
[ ] Tests cover the main scenarios
[ ] Edge cases tested
[ ] Error paths tested
[ ] Tests are readable and maintainable
[ ] No flaky tests introduced

PR Review Template

## Review Summary

**Status**: Approve / Request Changes / Comment

### What I Reviewed
- [Brief description of what you looked at]

### Feedback

#### Must Fix
- [ ] Item 1 (link to code)
- [ ] Item 2 (link to code)

#### Suggestions
- [ ] Consider extracting X into a helper
- [ ] Could simplify with Y pattern

#### Praise
- Great error handling in the auth module
- Nice test coverage for edge cases

Feedback Patterns

Constructive Feedback

Instead of: "This is wrong"
Say: "This might cause issues when X because Y. Consider Z instead."

Instead of: "Why did you do it this way?"
Say: "I'm curious about the reasoning for this approach. Have you considered X?"

Instead of: "This is bad code"
Say: "This could be simplified by [specific suggestion]"

Prefixed Comments

[nit] Minor style issue, take or leave
[suggestion] Optional improvement idea
[question] Seeking understanding, not necessarily a change
[issue] Must be addressed before merge
[praise] Something done well
[thought] Just sharing a perspective

Common Review Comments

**Missing error handling**
> What happens if `fetchUser()` throws? Consider wrapping in try/catch
> or adding `.catch()` to handle the error case.

**Potential null reference**
> `user.name` could throw if `user` is null. Consider optional chaining:
> `user?.name` or add a null check.

**N+1 query**
> This queries the database inside a loop. Consider using a batch query
> or `WHERE IN` clause to fetch all records at once.

**Race condition**
> If two requests hit this endpoint simultaneously, they could both
> read the same value before either writes. Consider using a transaction
> or optimistic locking.

**Security concern**
> User input is passed directly to the SQL query. Use parameterized
> queries to prevent SQL injection.

**Test coverage gap**
> The error path isn't tested. Consider adding a test for when
> the API returns a 500 error.

Review by Language

JavaScript/TypeScript

[ ] Using === not == for comparisons
[ ] Promises properly awaited (no floating promises)
[ ] Types are specific (not `any`)
[ ] useEffect dependencies correct (React)
[ ] No unnecessary re-renders (React)
[ ] Event listeners cleaned up
[ ] Error boundaries for UI components

Python

[ ] Type hints on public functions
[ ] Context managers for resources (with statement)
[ ] No mutable default arguments
[ ] Exception handling is specific (not bare except)
[ ] f-strings used consistently
[ ] Generator used for large sequences
[ ] __init__.py exports are intentional

SQL

[ ] Parameterized queries (no string interpolation)
[ ] Indexes exist for WHERE/JOIN columns
[ ] Migrations are reversible
[ ] No SELECT * in production queries
[ ] Transactions used for multi-statement operations
[ ] LIMIT on queries that could return many rows

PR Size Guidelines

Small PR (< 200 lines)  → Review in 15-30 min
Medium PR (200-500)      → Review in 30-60 min
Large PR (500-1000)      → Consider splitting
Very Large PR (> 1000)   → Should almost always be split

Tips for smaller PRs:
- Separate refactoring from feature changes
- Split infrastructure from business logic
- Extract migrations into their own PR
- Send tests in same PR as code (not separate)

Review Workflow

1. Read the PR description and linked issue
2. Understand the context (what problem does this solve?)
3. Review the test files first (understand expected behavior)
4. Review the main changes
5. Check for:
   - Correctness
   - Edge cases
   - Security
   - Performance
   - Readability
6. Run the code locally if needed
7. Leave feedback using prefixed comments
8. Summarize with overall assessment

Reference

For language-specific checklists: references/checklists.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Local Agent

95.93%
按下载量换算59

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills