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

review-changes审查变更

Agent Skill

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

总安装

1,597

周安装

64

GitHub Stars

公开资料未说明

下载量

517
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

  • 适用于基于关键词或任务场景审查变更内容的信息提取。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 建议确认权限范围和维护状态,避免触发联网或文件读写操作。
  • 可结合原始 README 进一步核验具体功能和调用方式。

SKILL.md

Review Changes

Overview

Review recent code changes against the repo's documented guidelines.

Default to review mode: identify concrete violations, risks, regressions, and missing tests first. Only give a brief clean bill of health when no meaningful findings exist.

Workflow

  1. Inspect the latest change set.
  2. Read the relevant parts of the project's guidelines (AGENTS.md, CLAUDE.md, or any onboarding doc referenced there).
  3. Read the changed code directly.
  4. Compare the implementation against repo rules, not generic style opinions.
  5. Report findings first, ordered by severity, with file references.
  6. If no findings exist, say that explicitly and note any residual risk or verification gap.

Inspect The Change Set

Prefer the smallest source of truth that answers the review request:

  • git status --short
  • git diff --stat
  • git diff -- <path>
  • git log -1 --stat
  • git show <commit>

If the user asks about committed work, review the relevant commit or commit range instead of the working tree.

Do not review from summaries alone. Read the affected files.

Review Focus

Use the project's documented guidelines as the review standard. Focus especially on:

  • correct file and feature placement per the project's directory conventions
  • DRY and reuse of logic, components, and flows
  • state management following the project's chosen patterns
  • dependency injection and service resolution following project conventions
  • repository and data access contracts matching established patterns
  • tests added or updated when behavior changes
  • files growing beyond roughly 800 lines without being split

Do not invent standards beyond what the repo documents unless a change is obviously broken on its own terms.

Repo-Specific Checks

Treat these as high-value checks:

  • duplicated components or near-identical UI that should be shared or parameterized
  • new services or repositories instantiated ad hoc inside views/components
  • raw exceptions escaping into state management or UI layers
  • hardcoded user-facing text that should be localized (if the project uses i18n)
  • behavior changes without matching test updates
  • large files that should be split into focused files

Use the checklist below when you need to scan quickly.

Review Checklist

Architecture

  • Does the code belong in the shared/core layer or in the feature that owns it?
  • Did the change duplicate a shared concern instead of reusing existing code?
  • Did any file grow beyond roughly 800 lines without being split?

State Management

  • Does the state management approach follow the project's chosen pattern?
  • If a new pattern was introduced, is there real complexity to justify it?

Data And DI

  • Are dependencies resolved via the project's DI system instead of ad hoc construction?
  • Do repositories and data access layers follow the established contracts?
  • Do mock or test implementations still match the real contract?

UI And Reuse

  • Is there an existing component that should have been reused?
  • Could the new UI be parameterized instead of cloned?
  • Should the component live in shared code because multiple features can use it?

User-Facing Behavior

  • Is all visible text localized (if the project uses i18n)?
  • Were any persistence changes made in a way that could create partial or inconsistent state?

Tests

  • Did behavior change without test updates?
  • If a reusable abstraction changed, were existing callers protected with tests?
  • Is there any residual risk because validation was not run?

Output Format

Findings are the primary output.

For each finding:

  • state the severity
  • state the problem
  • explain why it violates the project's guidelines or creates a concrete risk
  • include a file reference
  • suggest the fix direction briefly

After findings, optionally include:

  • open questions or assumptions
  • a short summary if needed

If there are no findings, say that explicitly. Mention residual risks such as unrun tests, incomplete diff scope, or unverified runtime behavior.

Review Discipline

  • Prefer repo-specific reasoning over generic best-practice language.
  • Do not request documentation updates unless the user asks for doc maintenance separately.
  • Do not suggest broad rewrites when a focused fix would satisfy the repo rule.
  • Be strict about architectural drift, duplication, and missing tests.
  • Be careful with false positives: confirm the code actually violates the rule before flagging it.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.86%
按下载量换算175

Claude

27.97%
按下载量换算145

Cursor

18.59%
按下载量换算96

Gemini CLI

9.77%
按下载量换算51

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills