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

review审查

Agent Skill

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

总安装

210

周安装

9

GitHub Stars

2

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/doodledood/codex-workflow --skill review

简介

review 整合多维度代码审查,涵盖 bug、类型、可维护性等检查项。

  • 适用于 PR 合并前自动化验证,支持跳过或限定审查类型。
  • 输出 consolidated 报告,标注问题位置与修复建议。
  • 需指定文件或 diff 范围,否则默认全量扫描可能耗时较长。
  • review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

User request: $ARGUMENTS

Orchestrate comprehensive code review by running specialized review skills and consolidating findings.

Flags:

  • --autonomous → no user prompts, run all applicable reviews, return consolidated report
  • --skip <types> → skip specific review types (comma-separated: bugs, types, maintainability, simplicity, testability, coverage, docs, agents-md)
  • --only <types> → run only specific review types

Output: Consolidated review report to user.

Phase 1: Setup

1.1 Determine Scope

Priority order for scope:

  1. User specifies files/directories in $ARGUMENTS → use those
  2. Otherwise → diff against origin/main or origin/master
  3. No changes found → ask user what to review

1.2 Select Reviews

Determine which reviews to run based on scope and arguments:

Review TypeSkillWhen to Include
Bugs$review-bugsAlways (unless skipped)
Type Safety$review-type-safetyTypeScript/typed Python detected
Maintainability$review-maintainabilityAlways (unless skipped)
Simplicity$review-simplicityAlways (unless skipped)
Testability$review-testabilityAlways (unless skipped)
Coverage$review-coverageTest files exist in project
Docs$review-docsAlways (unless skipped)
AGENTS.md$review-agents-md-adherenceAGENTS.md file exists

Detection logic:

  • TypeScript: tsconfig.json exists
  • Typed Python: pyproject.toml with mypy config OR py.typed marker
  • Test files: *.test.*, *.spec.*, __tests__/, tests/ exist
  • AGENTS.md: file exists in project root or parent directories

1.3 Create Todo List

- [ ] Run bug review
- [ ] Run type safety review (if applicable)
- [ ] Run maintainability review
- [ ] Run simplicity review
- [ ] Run testability review
- [ ] Run coverage review (if applicable)
- [ ] Run docs review
- [ ] Run AGENTS.md review (if applicable)
- [ ] Consolidate findings

Phase 2: Execute Reviews

2.1 Review Loop

For each selected review type:

  1. Mark todo in_progress
  2. Execute the review skill
  3. Capture findings (severity, location, description, suggested fix)
  4. Mark todo completed
  5. Continue to next review

2.2 Individual Review Execution

Run each review against the same scope:

Bug Review:

$review-bugs {scope}

Type Safety Review (if TypeScript/typed Python):

$review-type-safety {scope}

Maintainability Review:

$review-maintainability {scope}

Simplicity Review:

$review-simplicity {scope}

Testability Review:

$review-testability {scope}

Coverage Review (if tests exist):

$review-coverage {scope}

Docs Review:

$review-docs {scope}

AGENTS.md Review (if AGENTS.md exists):

$review-agents-md-adherence {scope}

2.3 Capture Findings

From each review, extract issues with:

  • Category: bugs | type-safety | maintainability | simplicity | testability | coverage | docs | agents-md
  • Severity: Critical | High | Medium | Low
  • Location: file:line
  • Description: What the issue is
  • Suggested Fix: How to resolve

Phase 3: Consolidate

3.1 Merge and Deduplicate

Combine all findings:

  1. Group by severity (Critical → High → Medium → Low)
  2. Within severity, group by category
  3. Deduplicate: same file:line with similar description → merge, keep highest severity

3.2 Generate Report

# Code Review Report

**Scope**: {files/changes reviewed}
**Reviews run**: {list of review types executed}

## Summary

| Category | Critical | High | Medium | Low |
|----------|----------|------|--------|-----|
| Bugs | N | N | N | N |
| Type Safety | N | N | N | N |
| Maintainability | N | N | N | N |
| Simplicity | N | N | N | N |
| Testability | N | N | N | N |
| Coverage | N | N | N | N |
| Docs | N | N | N | N |
| AGENTS.md | N | N | N | N |
| **Total** | N | N | N | N |

## Critical Issues

### [BUG] {Title}
**Location**: `file.ts:line`
**Description**: {issue}
**Suggested Fix**: {fix}

### [TYPE] {Title}
...

## High Issues
{Same format}

## Medium Issues
{Same format}

## Low Issues
{Same format}

## Review Status

| Review | Status | Issues Found |
|--------|--------|--------------|
| Bugs | ✓ Complete | N |
| Type Safety | ✓ Complete | N |
| Maintainability | ✓ Complete | N |
| Simplicity | ✓ Complete | N |
| Testability | ✓ Complete | N |
| Coverage | ✓ Complete | N |
| Docs | ✓ Complete | N |
| AGENTS.md | ✓ Complete | N |

## Recommendations

### Priority Fixes (do first)
1. {Critical/High issue with highest impact}
2. {Second priority}
3. {Third priority}

### Quick Wins (easy fixes)
- {Low-effort issues that can be fixed quickly}

### Deferred (consider later)
- {Low-severity issues that don't block merge}

3.3 Clean Report

If no issues found:

# Code Review Report

**Scope**: {files/changes reviewed}
**Reviews run**: {list}
**Status**: ALL CLEAR

No issues found. Code is ready for merge.

## Review Status

| Review | Status | Issues Found |
|--------|--------|--------------|
| Bugs | ✓ Complete | 0 |
| Type Safety | ✓ Complete | 0 |
...

Phase 4: Present Results

4.1 If --autonomous

Return consolidated report without prompts.

4.2 If Interactive

Present summary and ask:

## Review Complete

Found {N} issues across {M} categories.

Critical: {N} | High: {N} | Medium: {N} | Low: {N}

### Top Priority Fixes
1. {Issue 1}
2. {Issue 2}
3. {Issue 3}

What would you like to do?
Options:
  - Fix issues - run $fix-review-issues (Recommended if Critical/High exist)
  - Show full report - see all findings
  - Done - I'll address manually

Edge Cases

CaseAction
No scope (no changes, no files specified)Ask user what to review
No applicable reviews (e.g., no TS, no tests, no AGENTS.md)Run only applicable reviews, note skipped
Review skill errorsNote error in report, continue with other reviews
All reviews cleanReport "ALL CLEAR"
Very large scopeWarn user, proceed (reviews handle internally)

Guidelines

  • Comprehensive: Run all applicable reviews unless explicitly skipped
  • Consolidated: Single unified report, not multiple separate outputs
  • Actionable: Prioritize findings, suggest fix order
  • Efficient: Skip inapplicable reviews (no TypeScript = skip type review)
  • Autonomous: Support --autonomous for CI/automation use

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.19%
按下载量换算21

OpenCode

19.43%
按下载量换算14

Antigravity

18.06%
按下载量换算13

Gemini CLI

11.87%
按下载量换算9

windsurf

8.03%
按下载量换算6

Codex

3.51%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills