Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计未展示

code-review代码审查

Agent Skill

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

总安装

432

周安装

18

GitHub Stars

公开资料未说明

下载量

144
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add 5dlabs/cto --skill "code-review"

简介

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

  • 适用于提交前自查、团队协作或遗留代码重构场景。
  • 通过 npx skills add 5dlabs/cto --skill "code-review" 安装,建议指定语言规则集。
  • 使用前需对齐团队编码规范和审查重点。
  • 应区分风格问题与严重缺陷并分级处理。

SKILL.md

Code Quality Review

Quality analysis patterns for maintaining healthy, maintainable codebases.

Execution Rules

  1. Quality gates. All checks must pass before approval
  2. Constructive feedback. Be specific and actionable
  3. Test coverage. Aim for 80%+, 100% on critical paths
  4. Documentation. Code should be self-documenting with good names
  5. Consistency. Follow project conventions

Review Checklist

Code Quality

  • Clear, meaningful names
  • Small, focused functions (< 40 lines)
  • No code duplication (DRY)
  • Proper error handling
  • No magic numbers/strings

Testing

  • Unit tests for logic
  • Integration tests for workflows
  • Edge cases covered
  • Mocks used appropriately

Security

  • No secrets in code
  • Input validation
  • Output encoding
  • Auth/authz checks

Performance

  • No N+1 queries
  • Appropriate caching
  • Efficient algorithms

Language-Specific Checks

Rust

cargo fmt --all -- --check
cargo clippy --workspace --all-targets -- -D warnings -W clippy::pedantic
cargo test --workspace
cargo tarpaulin --out Html  # Coverage

Rust-Specific:

  • Verify #[must_use] attributes on functions returning values
  • Check for proper error handling with anyhow/thiserror
  • Ensure no unwrap() in production code paths
  • Verify tracing macros used instead of println!
  • Check clippy pedantic lints are satisfied

TypeScript

pnpm lint
pnpm typecheck || npx tsc --noEmit
pnpm test --coverage
pnpm build

Effect-Specific:

  • Verify Effect.Schema is used for validation (not Zod)
  • Check that errors use Schema.TaggedError for type safety
  • Ensure services use Context.Tag for dependency injection
  • Verify Effect.retry uses proper Schedule patterns
  • Check that Effect.gen is used for complex pipelines

React/Next.js:

  • Verify proper use of use client / use server directives
  • Check for proper error boundaries
  • Ensure accessibility attributes present

Go

go fmt ./...
golangci-lint run
go test ./... -cover
go vet ./...

Go-Specific:

  • Verify proper error handling (no ignored errors)
  • Check for goroutine leaks
  • Ensure context propagation
  • Verify interface segregation

Complexity Analysis

# Line counts by language
tokei .

# Check complexity
scc --complexity .

Quality Guidelines

  • Follow project style guide
  • Keep functions small and focused (< 40 lines)
  • Use meaningful names
  • Write self-documenting code
  • Maintain high test coverage
  • Address tech debt incrementally

Definition of Done

Before approving:

  • All quality checks pass (lint, format, type check)
  • Test coverage meets project threshold
  • No critical code smells or complexity issues
  • Documentation is complete and accurate
  • Review comments have been addressed
  • Changes follow project conventions

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

30.51%
按下载量换算44

OpenCode

22.91%
按下载量换算33

Codex

16.15%
按下载量换算23

Gemini CLI

13.66%
按下载量换算20

windsurf

7.21%
按下载量换算10

trae

3.11%
按下载量换算4

安全审计

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

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills