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

review-quality审查质量

Agent Skill

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

总安装

1,105

周安装

47

GitHub Stars

338

下载量

387
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/heyvhuang/ship-faster --skill review-quality

简介

review-quality 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 它适用于质量评估、信息聚合和线索筛选等研究检索类任务场景。
  • 通过关键词、任务场景或来源线索调用,可结合仓库 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态,注意是否会触发联网或文件读写操作。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装使用。

SKILL.md

Quality Review (Unified)

Goal: turn “is this change good?” into a repeatable review with a clear merge/production readiness verdict.

This skill intentionally merges three review lenses:

  1. Merge readiness (requirements alignment + risk + verification)
  2. Code maintainability (Clean Code-style review)
  3. Documentation consistency (README/docs vs implementation)

This is the single entry point for Ship Faster reviews. It includes an internal auto-triage:

  • Always run the unified review (this skill).
  • If React/Next.js performance risk is detected, also run review-react-best-practices and include its findings.
  • If UI surface changes are detected, also run a Web Interface Guidelines audit (a11y/focus/forms/motion/content overflow) and include terse file:line findings.

Inputs (recommended)

  • BASE_SHA and HEAD_SHA for diff-based reviews
  • Optional: PLAN_OR_REQUIREMENTS path (e.g. run_dir/evidence/features/<feature_slug>-plan.md)
  • Optional: docs scope (README.md, docs/**, API contracts)
  • Optional: run_dir (Ship Faster run directory, if available)

Suggested scope commands

# Baseline: main/master merge-base
BASE_SHA=$(git merge-base HEAD main 2>/dev/null || git merge-base HEAD master)
HEAD_SHA=$(git rev-parse HEAD)

git diff --stat "$BASE_SHA..$HEAD_SHA"
git diff "$BASE_SHA..$HEAD_SHA"

Process

0) Auto-triage (Built-in Router)

Goal: reduce user choice. The reviewer decides which specialized review lens to apply, deterministically, based on the diff.

Collect signals (minimum):

git diff --name-only "$BASE_SHA..$HEAD_SHA"
git diff --stat "$BASE_SHA..$HEAD_SHA"
git diff "$BASE_SHA..$HEAD_SHA"

Routing rules (apply in order):

  1. Docs-only change (fast path):

- If every changed file is in docs/** or ends with .md|.txt|.rst - Then run the unified review, but focus on Docs ↔ Code consistency + release risk (skip deep code maintainability unless docs reference code changes).

  1. React/Next.js performance-sensitive change:

- If any changed file matches: - **/*.tsx, **/*.jsx - next.config.*, app/**, pages/**, src/app/**, src/pages/** - React/Next entrypoints (layout.tsx, page.tsx, middleware.ts, route.ts, loading.tsx) - Or the diff contains performance-sensitive keywords (spot check via git diff): - use client, Suspense, dynamic(, next/dynamic, next/navigation, React.cache, revalidate, fetch(, headers(), cookies() - Then: run review-react-best-practices and include its output (or link to its artifact) in the final report.

  1. UI Web Interface Guidelines audit (a11y/UX rules, terse output):

- If any changed file matches: - UI code: **/*.tsx, **/*.jsx, **/*.vue, **/*.html, **/*.css, **/*.scss - Common UI dirs: app/**, pages/**, src/app/**, src/pages/**, components/**, src/components/** - Then: fetch the latest Web Interface Guidelines and audit only the changed UI files first. - Source: https://raw.githubusercontent.com/vercel-labs/web-interface-guidelines/main/command.md - Fetch method: WebFetch (if available) or curl -fsSL <url> - Output findings in terse file:line format, grouped by file (high signal, low prose). Treat a11y + focus issues as higher severity than cosmetic issues.

Output requirement (at top of your report):

## Triage
- Docs-only: yes|no
- React/Next perf review: yes|no
- UI guidelines audit: yes|no
- Reason: <1-3 bullets based on file paths / patterns>

1) Merge readiness (verdict review)

Use the template: references/code-reviewer.md.

Minimum checks:

  • Requirements alignment (acceptance criteria hit, non-goals respected)
  • Side effects are gated (deploy/payments/DB writes require explicit approval)
  • Error handling is explicit (no silent failures)
  • Verification evidence exists (tests/build/typecheck/lint/manual steps)

2) Clean Code maintainability scan

Review the diff (and nearby touched code) across these dimensions:

  1. Meaningful naming (avoid data1, tmp, mixed naming for same concept)
  2. Small functions / SRP (very long functions, too many params, mixed responsibilities)
  3. Duplication (DRY) (copy/paste logic, repeated transformations/validation)
  4. Over-engineering (YAGNI) (unused branches, unnecessary abstractions)
  5. Magic numbers / strings (hardcoded values without semantic constants)
  6. Structural clarity (deep nesting, unreadable one-liners, nested ternaries)
  7. Project conventions (imports/order/style consistency)

3) Docs ↔ code consistency scan

Check that docs do not lie:

  • Enumerate: README.md, docs/**/*.md, config examples, env keys, API contracts
  • For each claim/config/example: locate the authoritative code/config/contracts
  • Record mismatches with evidence (doc location + code location)

Output (required)

Produce a structured report:

  • quality-review.md
  • quality-review.json (optional but recommended)

If you are working inside a Ship Faster run directory, write to:

  • run_dir/evidence/quality-review.md
  • run_dir/evidence/quality-review.json

If triage selects React/Next performance review and a Ship Faster run_dir is available, also persist:

  • run_dir/evidence/react-best-practices-review.md

If triage selects UI guidelines audit and a Ship Faster run_dir is available, also persist:

  • run_dir/evidence/ui-guidelines-review.md (terse file:line findings, grouped by file)

Output format (recommended)

## Summary
- Verdict: Ready / With fixes / Not ready
- Scope: BASE_SHA..HEAD_SHA (or file list)

## Triage
- Docs-only: yes|no
- React/Next perf review: yes|no
- UI guidelines audit: yes|no
- Reason: ...

## Strengths
- ...

## Issues
### Critical (Must Fix)
- Location: path:line
  - What
  - Why it matters
  - Minimal fix

### Important (Should Fix)
...

### Minor (Nice to Have)
...

## UI Guidelines (terse, only if audit=yes)
- path:line <finding>
- path:line <finding>

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.4%
按下载量换算125

Claude

29.54%
按下载量换算114

Cursor

19.74%
按下载量换算76

Gemini CLI

8.76%
按下载量换算34

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills