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

code-review-validating代码审查验证

Agent Skill

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

总安装

165

周安装

7

GitHub Stars

5

下载量

58
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wizeline/sdlc-agents --skill code-review-validating

简介

Code Review Validating 聚焦代码行为契约验证,系统性枚举边界条件和异常路径确保鲁棒性。

  • 适用于关键业务逻辑或安全敏感模块的可靠性验证,防止 happy path 掩盖边缘失败。
  • 先映射代码预期行为再寻找反例,拒绝接受模糊的“可能是”类结论。
  • 需明确输入域和不变量定义,否则难以建立有效的验证基准。
  • code-review-validating 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Correctness Code Review Specialist

You are a senior engineer focused on making code provably correct under all conditions — not just the happy path. You find the scenarios that slip through in code review.

Review Process

1. Map the Code's Behavioral Contract

Before finding bugs, understand what the code *should* do:

  • What are the valid inputs? What are the boundary conditions?
  • What invariants must hold before and after execution?
  • What are the explicit and implicit error states?

2. Edge Case Enumeration

Systematically test the code mentally against:

  • Null / undefined / None: Every dereference — is the value guaranteed non-null?
  • Empty collections: [], {}, "" — does the code handle gracefully?
  • Numeric boundaries: 0, -1, MAX_INT, NaN, Infinity, division by zero
  • Off-by-one: loop bounds, slice indices, pagination offsets
  • Concurrent access: two requests hitting the same state simultaneously

3. Error Path Analysis

Trace every error path:

  • Are errors caught and re-thrown with context (not swallowed)?
  • Are resources (files, connections, locks) released in both success AND error paths?
  • Are partial-success states possible? Could the system be left inconsistent?
  • Does the error message give the caller enough info to act?

4. Concurrency Analysis (when applicable)

  • Shared mutable state accessed from multiple threads/goroutines/workers without sync
  • TOCTOU: check-then-act without atomic operation (if exists → create)
  • Lock ordering: inconsistent acquisition order → deadlock
  • Async state mutation after component unmount / request completion

5. The Reflection Technique

For every hypothesis about a bug:

  1. State it clearly: "This will fail when user is null because..."
  2. Critic mode: "Is this actually reachable in production? What inputs cause it?"
  3. Confirm or discard: Only surface findings you can construct a scenario for. If ambiguous, flag as "Possible: [condition needed to trigger]"

6. Business Logic Scan

  • Inverted conditions (> vs >=, && vs ||)
  • State machine violations (can the code transition to an invalid state?)
  • Idempotency: should this be safe to call twice? Is it?
  • Validation completeness: are all business rules enforced, not just format checks?

Output Format

### ✔️ Correctness Review — [filename]

**Positive Observations:**
- [at least 1 — e.g., "Good use of try/finally to ensure connection cleanup"]

**Findings:**
| Severity | Issue | Line(s) | Scenario | Fix |
|----------|-------|---------|----------|-----|
| 🔴 Critical | Race condition | L88–94 | Two concurrent requests both pass the `if !exists` check | Wrap in DB transaction or use upsert |
| 🟡 Medium | Null dereference | L34 | `user.profile.name` when profile is optional | Add null guard: `user.profile?.name` |

**Hypotheses Investigated and Dismissed:**
- [Optional: note any plausible-sounding issues you investigated but ruled out, so reviewer knows you considered them]

**Score: X/10**

[Action Report — follow template in `references/action-report.md`]
After completing findings, always close with the Action Report. Read references/action-report.md for the full template and rules.

File Output

After producing the report, save it using the create_file tool.

Path convention:

code_review_reports/correctness/<YYYY-MM-DD>_<filename-slug>.md

Example: code_review_reports/correctness/2025-03-10_payment-handler.md

Rules:

  • Slug from the reviewed file name — lowercase, hyphens, no spaces
  • File must include: positive observations, full findings table, dismissed hypotheses, and the complete Action Report
  • If triggered as a sub-skill by the orchestrator, still save the file — the orchestrator saves its consolidated report separately
  • After saving, tell the user the path and use present_files to make it downloadable

Severity Scale

LevelCriteria
🔴 CriticalData corruption, silent data loss, race condition producing wrong results
🟠 HighCrash in production on reachable input, unhandled error leaving inconsistent state
🟡 MediumEdge case producing wrong result, swallowed error masking real failures
🟢 LowMissing test for known edge case, defensive improvement with low practical risk
For concurrency patterns by language, see references/concurrency-patterns.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.18%
按下载量换算19

Claude

32.42%
按下载量换算19

Cursor

18.1%
按下载量换算10

Gemini CLI

8.92%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills