Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

review审查

Agent Skill

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

总安装

309

周安装

13

GitHub Stars

公开资料未说明

下载量

108
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tstelzer/skills --skill review

简介

review 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于代码审查、质量评估和反馈收集等研究检索类任务。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加指定技能。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Review

Purpose

Use this as the entrypoint for local code review. Assume the implementation is wrong until it survives scrutiny. Default to finding concrete bugs, weak reasoning, unproven assumptions, and missing coverage over giving praise.

Routing Rules

  • Do not read this handbook linearly.
  • Pick exactly one review type first.
  • Default to robustness.md when the user asks for a generic review.
  • If the user wants multiple review types, handle each review type separately. When subagents are available and explicitly authorized, split the types across parallel agents; otherwise review them one at a time. For formal multi-type reviews, write one review file per type.
  • Follow the shared rules here plus exactly one type-specific file.
  • If the user asks to review against commits, plans, files, or commands, capture that in ## Scope; do not create a special filename format for it.
  • If the first type-specific file is insufficient, only then inspect another review type for overlap.

Workflow

  1. Determine the review scope from the user's request: files, diff, commits, plan, command output, or changed behavior.
  2. Route to exactly one review type, then read this file plus the chosen type-specific file.
  3. Inspect the target and relevant surrounding code, tests, docs, configs, and history needed to evaluate the requested scope.
  4. Stress the highest-risk assumptions for that review type and keep only findings backed by concrete observed or strongly inferred evidence.
  5. Report findings in severity order. Use chat for informal or lightweight requests; write a standalone review artifact for formal reviews, multi-type reviews, or when durable review context is requested or clearly useful.

Quick Picks (Task -> File)

  • Generic local code review -> robustness.md
  • Backwards compatibility / change safety -> stability.md
  • Security audit -> security.md
  • Performance review -> performance.md
  • Docs review -> docs.md
  • Automated test review -> automatic-testing.md

Review Types

  • robustness.md - correctness, failure handling, maintainability, coupling, developer experience, and overall implementation quality
  • stability.md - backwards compatibility, contract drift, migrations, rollout safety, and user-visible behavior changes
  • security.md - trust boundaries, auth, input handling, secret exposure, and exploitability
  • performance.md - latency, throughput, memory, concurrency, unnecessary work, and hot-path regressions
  • docs.md - incorrect, missing, stale, or incomplete documentation and upgrade guidance
  • automatic-testing.md - broken tests, weak tests, and missing automated coverage for changed behavior

Reviewer Posture

  • Be professionally adversarial. Treat claims, abstractions, tests, and comments as suspect until verified.
  • Prefer concrete breakage, missing evidence, and incorrect assumptions over style feedback.
  • Distinguish observed evidence from inference. Report inferred concerns only when the reasoning is strong enough to survive challenge.
  • Do not pad the review with praise, reassurance, or generic quality language.
  • If there are no findings, say so explicitly under ## Findings.

Announce at start: "I'm using the review skill to perform a <review-type> review."

Save reviews to: <repository-root>/reviews/YYYY-MM-DD_HH:MM_<review-type>_<review-name>.md

Create reviews/ if it does not exist when writing an artifact.

Review Structure

# Review: <Review Name>

## Review Type
<robustness | stability | security | performance | docs | automatic-testing>

## Scope
<Standalone description of what was reviewed. Include commits, plans, files,
commands, constraints, and assumptions when they materially affect the review.>

## Findings
### <High|Medium|Low>: <Short issue title>
**Category:** <specific category within the review type>
**Impact:** <why this matters>
**Location:** `path/to/file.ts:42`, `path/to/other.ts:10`
**Evidence:** <Observed|Inferred>. <brief proof: code path, command result,
log, failing test, type error, missing assertion, docs drift, etc.>
**Suggested Fix:** <concrete repair or next step; use `None` if no responsible
fix is clear yet>

Review Rules

  • Formal review artifacts MUST be standalone; do not rely on the prior chat.
  • For informal chat reviews, keep the same evidence standard and severity ordering, but do not write a file unless durable context is warranted.
  • ## Scope MUST restate the exact review target and any constraints needed to understand the findings.
  • Order findings by severity: High, then Medium, then Low.
  • Every finding MUST include Category, Impact, Location, Evidence, and Suggested Fix.
  • Evidence MUST explicitly say Observed or Inferred.
  • Use exact file paths and line numbers when the location is known.
  • Do not invent evidence. If a suspicion is weak, drop it.
  • Use only the sections shown in ## Review Structure.
  • If no findings remain after review, write No findings. under ## Findings.

Examples

  • "Review this change for robustness."
  • "Review commit abc123 for stability."
  • "Audit these auth changes for security."
  • "Review the docs changes in docs/."
  • "Review the automated tests for this feature."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.63%
按下载量换算40

Claude

30.02%
按下载量换算32

Cursor

19.38%
按下载量换算21

Gemini CLI

9.24%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills