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

review-changes审查变更

Agent Skill

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

总安装

1,584

周安装

66

GitHub Stars

1

下载量

528
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

review-changes 审查功能分支的代码变更并在合并前发现问题。

  • 它支持远程 PR 检查和本地分支对比两种模式。
  • 自动搜索仓库编码规范和测试用例要求。
  • 可结合 gh CLI 工具获取 PR 上下文信息进行针对性审查。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Review Changes

Review code changes in a feature branch and identify issues before merging.

Workflow

1. Determine Review Target

1. Checkout the PR: gh pr checkout <PR_NUMBER> 2. Read PR context: gh pr view <PR_NUMBER> --json title,body,comments 3. Use the PR description and comments as additional context for the review

  • Local Changes: If no PR specified, review current branch against default branch (continue to step 2)

1.5 Load Repository Guidelines

Search for repository-specific coding guidelines. These take precedence over built-in guidelines.

Discovery order (highest to lowest priority):

  1. CLAUDE.md, .claude/CLAUDE.md
  2. CODE_GUIDELINES.md, .github/CODE_GUIDELINES.md, docs/CODE_GUIDELINES.md
  3. STYLE_GUIDE.md, .github/STYLE_GUIDE.md, docs/STYLE_GUIDE.md
  4. CONTRIBUTING.md, .github/CONTRIBUTING.md, docs/CONTRIBUTING.md

Extract review-relevant content (coding standards, error handling, testing, security, naming conventions). Skip non-review content (issue templates, code of conduct). User guidelines take precedence over built-in guidelines and are additive. When reviewing a remote PR, load guidelines from the remote repository.

2. Detect Branches

# Get current branch
git branch --show-current

# Detect default branch (try remote HEAD, fall back to main)
git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null | sed 's@^refs/remotes/origin/@@' || echo "main"

3. Get Changed Files

# Assess scope first
git diff --stat <default-branch>...HEAD

# Get full diff
git diff <default-branch>...HEAD

Performance guardrails:

  1. Skip lock files, .min.js, .min.css, generated files, compiled output
  2. If >30 changed files, prioritize source over tests/config; summarize skipped files
  3. If a single file has >500 lines changed, summarize rather than line-by-line review
  4. If total diff >3000 lines, select the ~20 most important files and summarize the rest

4. Analyze Changes

Use the diff as the primary input. Apply guidelines holistically across the diff rather than file-by-file. Only read full files when surrounding context is needed to understand a change.

Review process:

  1. Identify applicable guidelines: repository-specific (from step 1.5), general (below), and language-specific (from reference files)
  2. Check for critical issues first — report before scanning for minor ones
  3. For each issue found, record: guideline violated, file and line number, problem description, fix suggestion
  4. Skip inapplicable guidelines (no database operations → skip Database & Persistence)

5. Check Test Coverage

For each new or modified file containing business logic:

  • Check if corresponding test file exists
  • If tests exist, verify new code paths have coverage
  • Flag missing tests for critical paths

6. Format Output

Present findings grouped by severity, ordered Critical → Major → Minor.

## Branch Review: `feature/xyz` → `main`

**Repository guidelines loaded:**
- `.github/CONTRIBUTING.md` - coding standards, testing requirements

*(These take precedence over built-in rules where they conflict)*

### 🔴 Critical (X issues)

**1. [Brief title]**
- **File**: `path/to/file.ts:42`
- **Problem**: Clear description of what's wrong
- **Fix**: Specific solution

### 🟠 Major (X issues)

**1. [Brief title]** `[repo]`
- **File**: `path/to/file.ts:87`
- **Problem**: Description
- **Fix**: Solution

### 🟡 Minor (X issues)

**1. [Brief title]**
- **File**: `path/to/file.ts:123`
- **Problem**: Description
- **Fix**: Solution

---
**Summary**: X critical, Y major, Z minor issues found.
[Ready to merge / Needs fixes before merge]

If no issues found in a category, omit that section. End with clear merge recommendation. Issues marked [repo] were flagged based on repository-specific guidelines. If no repository guidelines were loaded, omit the "Repository guidelines loaded" section.

Feedback tone: Be constructive — explain *why* a change is needed. Provide actionable suggestions. Assume positive intent. For approvals, acknowledge the specific value of the contribution.


General Guidelines

These apply to every review regardless of language.

API & Breaking Changes

  • Removed or renamed public functions/methods without deprecation period
  • Changed function signatures (new required parameters, changed return types)
  • Modified response shapes in API endpoints (removed fields, changed types)
  • Changed default values that alter existing behavior
  • Database schema changes without migration scripts

Authentication & Authorization (Critical)

  • Missing auth checks on new endpoints or routes
  • Downgraded permissions (admin-only → public)
  • Hardcoded credentials or API keys
  • JWT/session issues: missing expiry, weak secrets, improper validation
  • CORS misconfigurations: overly permissive origins (* in production)

Database & Persistence

  • Missing transactions for multi-step atomic operations
  • N+1 query patterns: fetching related data in loops instead of joins/eager loading
  • Missing indexes on frequently queried columns
  • Unbounded queries: SELECT * without LIMIT on large tables
  • SQL injection: string concatenation in queries instead of parameterized queries

Concurrency (Critical for data corruption)

  • Shared mutable state accessed without synchronization
  • Missing locks/mutexes when modifying shared resources
  • Check-then-act patterns without atomicity (TOCTOU)
  • Deadlock potential: acquiring multiple locks in inconsistent order

Async Code

  • After any await, verify assumptions are still valid — state may have changed
  • Flag when code returns success without verifying the expected outcome of an async operation

External API Handling

  • Missing timeouts on HTTP requests
  • No retry logic for transient failures
  • Missing circuit breakers for repeatedly failing services
  • Not distinguishing between 4xx and 5xx errors
  • Missing rate limiting awareness (no backoff on 429)

Edge Cases & Boundaries

  • Code assumes arrays/lists are non-empty
  • Missing null/undefined checks on optional values
  • Off-by-one errors in loops, incorrect range checks
  • Type coercion issues leading to unexpected behavior
  • Unicode/encoding issues: assuming ASCII, incorrect string length

Defensive Coding

  • Using external input (APIs/users) without validation
  • Not handling failure cases for operations that can fail
  • Array access without verifying index is valid
  • Code relying on undocumented behavior or ordering

Input Sanitization (Critical)

  • Command injection: unsanitized input in shell commands — use argument arrays, not string interpolation
  • Path traversal: user input in file paths escaping intended directories — resolve and validate paths
  • XSS: user input rendered as HTML — escape or use safe APIs, validate URL protocols
  • Log injection: unsanitized input forging log entries — use structured logging
  • SQL injection: string concatenation in queries — use parameterized queries

Memory & Performance

  • Unbounded collections (arrays/maps growing without limits)
  • Memory leaks: event listeners not removed, closures holding references
  • Large allocations in loops that could be reused
  • Blocking synchronous I/O or CPU-heavy work on main thread
  • Missing pagination: loading entire datasets

File System Operations

  • Reading files without verifying they exist
  • Writing files without ensuring parent directory exists
  • Missing error handling on file operations

Logging & Observability

  • Insufficient logging for important operations
  • Excessive logging creating noise or performance issues
  • Missing correlation IDs for cross-service tracing
  • Critical: Logging sensitive data (PII, passwords, tokens)
  • New features without observability hooks

Testing Quality

  • Tests that don't assert anything meaningful
  • Missing edge case coverage (only happy path)
  • Flaky tests: race conditions, time dependencies, external dependencies
  • Test pollution: shared state, missing cleanup
  • Mocking too much: tests don't exercise real code paths

Accessibility

  • Missing alt text on images
  • Non-semantic HTML (divs for buttons, missing form labels)
  • Interactive elements not reachable via keyboard
  • Missing ARIA labels on icon-only buttons
  • Color-only indicators

Code Style

  • Prefer early returns over nested if statements — flat code is easier to read

Error Messages

  • Error messages must be actionable, contextual, and specific
  • Include identifiers (order IDs, user IDs) for debugging
  • Don't expose stack traces or internal details to end users
  • Include error codes for programmatic handling

Language-Specific Guidelines

Based on file extensions in the diff, load the relevant reference:

Only load references for languages present in the changed files.


Severity Definitions

  • Critical — Block the merge. Broken code, security vulnerabilities, data leaks, runtime failures that will crash production.
  • Major — Should fix. Unhandled async, missing error handling, resource leaks, race conditions, missing validation.
  • Minor — Nice to fix. Code clarity, consistency, performance, dead code, duplication, unresolved TODOs.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.68%
按下载量换算188

Claude

32.93%
按下载量换算174

Cursor

17.65%
按下载量换算93

Gemini CLI

10.58%
按下载量换算56

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills