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

review审查

Agent Skill

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

总安装

624

周安装

26

GitHub Stars

公开资料未说明

下载量

208
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

review 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于根据关键词、任务场景或来源线索进行信息定位和整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

review

Review one change set and return a decision-led report.


Guardrails

  • Review changes made on the currently checked-out branch.
  • Do not implement or modify code.
  • Do not commit, merge, push, or delete branches.
  • Do not ask the user which branch to check against.
  • Resolve the comparison base automatically from the repository default/base branch.
  • Block approval if the current branch is behind the resolved comparison base; require sync + re-review.
  • Do not update PRD tracking files here.
  • Update tasks/context.md only for durable review outcomes.
  • Examples: recurring risks, release-critical gotchas, or confirmed follow-up decisions.
  • Do not invent test results; run checks or call out missing evidence.
  • When asking for user decisions (e.g. scope clarification), provide numbered short-reply options (e.g. 1, 2, 3).

Inputs

  • current branch (resolved from git branch --show-current)
  • comparison base (default/base branch resolved automatically; do not prompt for it)
  • optional PRD path (if scope validation is needed)

Workflow

  1. Resolve current branch and comparison base automatically.

- Prefer the repository default branch resolved from origin/HEAD. - Otherwise use the local default branch (main, master, or dev) when exactly one exists. - If the comparison base cannot be resolved, return Good to commit: No with the exact commands/data needed to resolve it.

  1. Collect context:

- git fetch --all --prune to refresh remote state - git diff "<comparison-base>...HEAD" - git log "<comparison-base>..HEAD" --oneline - git merge-base --is-ancestor "<comparison-base>" HEAD - git diff --staged - git diff - git status --short

  1. Compare the change set against required behaviour:

- If git merge-base --is-ancestor "<comparison-base>" HEAD fails, return Good to commit: No and require sync before re-review. - correctness and edge cases - security risks and data handling - test depth and regression risk - scope control (especially if PRD path is provided) - Compare diff vs PRD 'In scope' and completed user stories; flag any diff not attributable to a PRD requirement.

  1. Classify findings:

- blockers (must fix) - suggestions (optional improvements) - missing evidence (tests/checks not run, unclear behaviour) - If unable to run checks (CI-only, permissions), mark as "Missing evidence". - Request a specific artifact: CI link, log, or command the user can run.

  1. Produce the report with a clear recommendation:

- Good to commit: Yes or Good to commit: No - if decision is No, include explicit fix items and ask the user to address them before rerunning review

  1. Evaluate context-worthy review outcomes and update tasks/context.md inline when needed:

- systemic risks likely to recur - key security or data-handling decisions - durable follow-up decisions that affect future work - if no durable outcome exists, mark context as skipped with reason in the report


Review Checklist

  • Correctness:

- empty/null/error paths - boundary values and state transitions - ordering/concurrency/time assumptions (if applicable)

  • Security:

- authn/authz behaviour - input validation and output encoding - secret/PII handling and logging safety - dependency risk for newly introduced packages

  • Tests and verification:

- happy path + key failure paths - regression coverage in touched areas - manual verification steps when automation is missing

  • Maintainability:

- naming clarity and control-flow simplicity - comments/docs for non-obvious decisions only


References

  • references/report-template.md: standard report structure for review outputs.

Output

  • Return the review report with explicit context update status.
  • Keep the decision explicit and unambiguous.
  • End with a short status block:

- Files changed: list of created/updated files - Key decisions: any assumptions or choices made (if any) - Next step: recommended next skill or action

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.9%
按下载量换算73

Claude

28.71%
按下载量换算60

Cursor

20.38%
按下载量换算42

Gemini CLI

9.34%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills