Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

engineer-review工程师审查

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

1

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/elliottrjacobs/bench-skills --skill engineer-review

简介

工程师审查用于启动多专家并行代码评审流程。

  • 适合需要全面质量保障的复杂变更场景。engineer-review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 可自动识别技术栈并分配对应领域专家。
  • 每个评审员独立报告发现,避免观点冲突。
  • 建议在合并前完成所有评审,确保质量门禁生效。

SKILL.md

/engineer-review — Multi-Agent Code Review

Launch parallel specialist reviewer agents to comprehensively review code changes. Each reviewer focuses on one domain and reports findings independently.

When to Use

  • User says "review this", "code review", "review my PR"
  • After completing /engineer-work
  • Before merging a feature branch

Process

Step 1: Scope the Review

Determine what to review:

  • If a PR number is provided: gh pr diff [number]
  • If on a feature branch: git diff main...HEAD
  • If $ARGUMENTS specifies files: review those files

Get the diff and list of changed files.

Step 2: Detect Tech Stack

Read project config files to determine which conditional reviewers to launch:

  • tsconfig.json → TypeScript reviewer
  • next.config.* → Next.js reviewer
  • app.json or expo in package.json → Expo/RN reviewer
  • supabase/ directory → Supabase reviewer
  • docs/prds/ or docs/tech-specs/ → Spec compliance reviewer

Step 3: Launch Parallel Reviewers

Spawn ALL selected reviewers IN PARALLEL using the Task tool. Send all Task calls in a single message.

Always launch these 4 core reviewers:

Security Reviewer

prompt: Review these code changes for security vulnerabilities.
  Focus on: auth bypass, injection (SQL/XSS/command), data exposure,
  hardcoded secrets, insecure defaults, missing input validation.
  Return: file, line, severity (P1-P4), description, fix suggestion.

Performance Reviewer

prompt: Review these code changes for performance issues.
  Focus on: N+1 queries, missing indexes, unnecessary re-renders,
  bundle size impact, request waterfalls, missing caching, large payloads.
  Return: file, line, severity (P1-P4), description, fix suggestion.

Architecture Reviewer

prompt: Review these code changes for architectural issues.
  Focus on: component boundaries, module dependencies, state management
  choices, data flow patterns, separation of concerns, SOLID principles.
  Return: file, line, severity (P1-P4), description, fix suggestion.

Patterns Reviewer

prompt: Review these code changes for consistency with codebase patterns.
  First read existing files to understand conventions, then check:
  naming conventions, import patterns, error handling patterns,
  duplication, anti-patterns, TypeScript usage.
  Return: file, line, severity (P1-P4), description, fix suggestion.

Conditionally launch based on Step 2 detection:

TypeScript Reviewer (if tsconfig.json)

prompt: Review for TypeScript quality. Focus on: type safety, proper generics,
  Zod schema integration, avoiding any/as assertions, discriminated unions.

Next.js Reviewer (if next.config.*)

prompt: Review for Next.js App Router best practices. Focus on: server/client
  component boundaries, data fetching patterns, caching, middleware, server actions.

Expo/RN Reviewer (if app.json/expo)

prompt: Review for Expo/React Native patterns. Focus on: Expo Router conventions,
  NativeWind styling, platform handling, native module usage, mobile performance.

Supabase Reviewer (if supabase/ directory)

prompt: Review Supabase usage. Focus on: RLS policy completeness, auth patterns,
  client selection (browser vs server), storage policies, realtime security.

Spec Compliance Reviewer (if docs/prds/ or docs/tech-specs/)

prompt: Compare implementation against the spec. Read the latest PRD/tech-spec
  in docs/. Check: requirements met, deviations justified, nothing over-built.

See references/reviewer-catalog.md for full reviewer focus areas.

Step 4: Synthesize Results

Collect all reviewer findings and produce a unified summary:

## Code Review Summary

### P1 — Critical (must fix before merge)
| # | File | Line | Issue | Reviewer |
|---|------|------|-------|----------|

### P2 — Important (should fix)
| # | File | Line | Issue | Reviewer |

### P3 — Suggestion (consider fixing)
| # | File | Line | Issue | Reviewer |

### P4 — Nitpick (optional)
| # | File | Line | Issue | Reviewer |

### Positive Patterns
[Good patterns worth noting]

### Reviewers Run
[List which reviewers were launched and why]

Deduplicate findings across reviewers. If two reviewers flag the same issue, keep the more specific one.

Output

Review summary presented inline. Optionally save to docs/reviews/ if requested.

Next Steps

  • Issues found? Fix them and re-run /engineer-review
  • All clear? Merge the PR
  • Want to capture learnings? → /knowledge-compound

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.29%
按下载量换算22

Claude

28.14%
按下载量换算19

Cursor

19.79%
按下载量换算13

Gemini CLI

10.7%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills