Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

diff-review差异审查

Agent Skill

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

总安装

242

周安装

10

GitHub Stars

2

下载量

79
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mitchellx/awesome-skills --skill diff-review

简介

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

  • 适用于需要根据关键词或任务场景从来源线索中筛选信息的场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意是否涉及联网或文件操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Diff Review - Multi-Agent Code Review

Review code diffs using multiple AI reviewers in parallel, then merge findings into a unified report.

Usage

/diff-review [<commit-hash>] [--reviewer=<gemini|codex|claude|auto|all>]

Parameters

  • <commit-hash> (optional): Review a specific commit instead of uncommitted changes. Accepts full or short hash.
  • --reviewer (optional): Select reviewer mode

- gemini: Use Gemini CLI only - codex: Use Codex CLI only - claude: Use Claude only (spawns new session) - auto: Auto-select best reviewer based on code (reads reviewers/auto-select.md) - all or omitted: Multi-Agent Mode - use all three reviewers in parallel

When NOT to Use This Skill

  • For non-code reviews (documentation proofreading, prose editing)
  • When reviewing external/third-party code you don't control
  • For commit message generation (use a dedicated commit skill)

Workflow

Step 0: Check Prerequisites

Verify CLI availability:

# Check Gemini CLI
which gemini || echo "GEMINI_NOT_FOUND"

# Check Codex CLI
which codex || echo "CODEX_NOT_FOUND"

If neither CLI is found for multi-agent mode: Warn user and suggest installation.

If only some CLIs available: Proceed with available reviewers only.


Step 1: Parse Parameters

IF <commit-hash> is provided:
    Set REVIEW_MODE = "commit"
    Set COMMIT_HASH = <commit-hash>
ELSE:
    Set REVIEW_MODE = "uncommitted"

IF --reviewer is specified:
    IF --reviewer=auto:
        Read reviewers/auto-select.md and follow its logic
    ELSE IF --reviewer=gemini|codex|claude:
        Set SINGLE_REVIEWER_MODE = true
        Set REVIEWER = specified value
    ELSE IF --reviewer=all:
        Set MULTI_AGENT_MODE = true
ELSE:
    Set MULTI_AGENT_MODE = true (default)

Step 2: Get Git Diff

If REVIEW_MODE = "commit":

# Verify the commit exists
git rev-parse --verify $COMMIT_HASH

# Get commit metadata
git --no-pager log -1 --format="%H%n%s%n%an%n%ai" $COMMIT_HASH

# Get diff stats for the commit
git --no-pager diff --stat ${COMMIT_HASH}~1 $COMMIT_HASH

# Get full diff for analysis
git --no-pager diff ${COMMIT_HASH}~1 $COMMIT_HASH

# Count changed files
git --no-pager diff --name-only ${COMMIT_HASH}~1 $COMMIT_HASH | wc -l

# Count total changed lines
git --no-pager diff --numstat ${COMMIT_HASH}~1 $COMMIT_HASH | awk '{added+=$1; removed+=$2} END {print added+removed}'

If commit hash is invalid: Report "❌ Invalid commit hash: $COMMIT_HASH" and stop.

If REVIEW_MODE = "uncommitted":

# Get diff stats (staged + unstaged)
git --no-pager diff --stat HEAD 2>/dev/null || git --no-pager diff --stat

# Get full diff for analysis
git --no-pager diff HEAD 2>/dev/null || git --no-pager diff

# Count changed files
git --no-pager diff --name-only HEAD 2>/dev/null | wc -l

# Count total changed lines
git --no-pager diff --numstat HEAD 2>/dev/null | awk '{added+=$1; removed+=$2} END {print added+removed}'

If no changes detected: Report "Nothing to review - no uncommitted changes found." and stop.


Step 3: Auto-detect Expertise

Read expertise/_index.md to get detection rules.

For each expertise defined:

  1. Check if diff content matches trigger_patterns
  2. Check if changed files match file_patterns
  3. If matched, load the corresponding expertise/*.md file

Store matched expertise prompts for injection into reviewer prompts.


Step 4: Execute Review

Multi-Agent Mode (default)

Execute all three reviewers in parallel using the exact commands below.

⚠️ CRITICAL: Each CLI has different syntax. Do NOT mix them up!

  • Gemini: git diff | gemini -p "prompt" (accepts stdin pipe ✅)
  • Codex: codex exec "prompt" (non-interactive headless mode, reads codebase directly ✅)
  • Claude: Spawn subagent via Task tool

Construct [FULL_PROMPT] for each reviewer by combining:

  1. The reviewer's role file (e.g., reviewers/gemini-role.md)
  2. Any matched expertise prompts from Step 3
  3. The review target context (commit hash, diff stats)

All three reviewers MUST receive the same review instructions — only the delivery mechanism differs.

PARALLEL:
    Task 1: Run Gemini Review
        - Load reviewers/gemini-role.md
        - Inject matched expertise prompts
        - Execute:
            # For specific commit (pipe the diff as context):
            git --no-pager diff ${COMMIT_HASH}~1 $COMMIT_HASH | gemini -p "[FULL_PROMPT]"
            # For uncommitted changes:
            git --no-pager diff HEAD | gemini -p "[FULL_PROMPT]"
        - Store result as GEMINI_RESULT

    Task 2: Run Codex Review
        - Load reviewers/codex-role.md
        - Inject matched expertise prompts
        - Execute using `codex exec` (NOT `codex review`):
            # For specific commit:
            codex exec --sandbox read-only --ephemeral "Review commit ${COMMIT_HASH}. [FULL_PROMPT]"
            # For uncommitted changes:
            codex exec --sandbox read-only --ephemeral "Review all uncommitted changes. [FULL_PROMPT]"
        - ⚠️ Do NOT use: `codex -p` (doesn't exist), `codex review` (flag conflicts with prompt)
        - `codex exec` reads the codebase directly — no need to pipe diff
        - `--sandbox read-only` = safe, `--ephemeral` = don't save session
        - Store result as CODEX_RESULT

    Task 3: Run Claude Review
        - Load reviewers/claude-role.md
        - Inject matched expertise prompts
        - In Claude Code: use Task tool to spawn a subagent with diff + prompt
        - Store result as CLAUDE_RESULT
END PARALLEL

Then proceed to Step 5: Coordinate & Merge.

Single Reviewer Mode

Execute only the selected reviewer using the commands above for the chosen reviewer. Output result directly to terminal, then STOP (skip Step 5).


Step 5: Coordinate & Merge (Multi-Agent Mode Only)

Load reviewers/coordinator.md and provide it with:

  • GEMINI_RESULT
  • CODEX_RESULT
  • CLAUDE_RESULT

The Coordinator will:

  1. Parse all three reviews into structured format
  2. Identify similar issues across reviewers
  3. Merge similar issues while preserving source attribution
  4. Preserve unique issues found by only one reviewer
  5. Sort by severity: Critical > High > Medium > Low
  6. Generate unified report using templates/report.md

⚠️ All emoji in the report template (🔵🟢🟣🚨⚠️📝💡📊📋📎 etc.) MUST be preserved in the final output. Do not strip or replace them.


Step 6: Save Report (MANDATORY)

⚠️ This step is NOT optional. You MUST save the report to a file.

# Generate filename
# For commit review:
REPORT_FILE="diff-review-$(echo $COMMIT_HASH | cut -c1-7)-$(TZ='America/New_York' date +%Y%m%d-%H%M%S).md"
# For uncommitted changes:
REPORT_FILE="diff-review-$(TZ='America/New_York' date +%Y%m%d-%H%M%S).md"

You MUST do BOTH of the following:

  1. Output the full report to terminal
  2. Write the report to $REPORT_FILE in the current working directory
# Write report to file — THIS IS REQUIRED, DO NOT SKIP
cat << 'EOF' > "$REPORT_FILE"
[full report content here]
EOF

# Confirm to user
echo "📄 Report saved to: $REPORT_FILE"

Report includes:

  • Review target (commit hash + message, or "uncommitted changes")
  • Summary table (severity counts)
  • Merged issues with source attribution
  • Raw outputs in collapsible sections

File naming convention:

  • Commit review: diff-review-<short-hash>-YYYYMMDD-HHMMSS.md
  • Uncommitted: diff-review-YYYYMMDD-HHMMSS.md

General Review Guidelines

These guidelines apply to all reviewers:

Code Quality

  • Logic correctness
  • Error handling completeness
  • Edge case coverage
  • Code readability

Security

  • Input validation
  • Authentication/authorization issues
  • Sensitive data exposure
  • Injection vulnerabilities

Performance

  • Algorithmic efficiency
  • Resource management (memory, connections)
  • Unnecessary computations
  • Caching opportunities

Best Practices

  • DRY principle adherence
  • SOLID principles
  • Proper abstractions
  • Documentation completeness

Fallback Handling

If a reviewer fails:

IF GEMINI fails:
    Log: "⚠️ Gemini review failed: [error]"
    Continue with other reviewers

IF CODEX fails:
    Log: "⚠️ Codex review failed: [error]"
    Continue with other reviewers

IF CLAUDE fails:
    Log: "⚠️ Claude review failed: [error]"
    Continue with other reviewers

IF ALL reviewers fail:
    Output: "❌ All reviewers failed. Please check CLI installations."
    Provide installation links

If only one reviewer succeeds:

Output that reviewer's result directly without coordination step.

If two reviewers succeed:

Proceed with coordination using available results.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.41%
按下载量换算27

Claude

31.85%
按下载量换算25

Cursor

18.04%
按下载量换算14

Gemini CLI

9.06%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/mitchellx/awesome-skills --skill diff-review 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills