Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

five-star-reviewers五星级审稿人

Agent Skill

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

总安装

3,128

周安装

133

GitHub Stars

公开资料未说明

下载量

1,096
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:five-star-reviewers(五星级审稿人)
来源仓库:https://github.com/vincent-ng/five-star-reviewers
安装命令:
openclaw skills install five-star-reviewers
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install five-star-reviewers

简介

five-star-reviewers 用于协调多位审阅者进行代码审查。

  • 适用于 git diff、pull request 等范围的审阅流程。
  • 通过 clawhub 安装,结合来源仓库和 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件读写。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
five-star-reviewers
description
orchestrate a five-reviewer code review over a git diff, pull request diff, patch, or commit range by launching one dedicated sub-agent per reviewer role, then produce one consolidated report for a follow-up ai coding pass. use when reviewing a code repository, comparing working tree changes, checking a pr, or evaluating changes between two git revisions. optimized for pragmatic, language-agnostic review that prioritizes correctness, architecture, testability, readability, and simplicity while actively discouraging code bloat, unnecessary abstraction, and maintenance-heavy designs.

Five Star Reviewers

Run a coordinated, language-agnostic review across five focused reviewer sub-agents, then merge them into one pragmatic report that a human or a follow-up AI can act on immediately.

Core principles

Apply these principles globally, especially when reviewers disagree:

  1. Preserve correctness before optimizing elegance.
  2. Prefer fewer concepts over fewer lines.
  3. Favor high cohesion, low coupling, and a small maintenance surface.
  4. Allow small amounts of repetition when the alternative is a weak abstraction.
  5. Do not add complexity for speculative future requirements.
  6. Every finding should help the next iteration produce smaller, clearer, safer code.

Mandatory multi-agent rule

You must launch exactly five dedicated sub-agents for every full review run.

  • Use one sub-agent per reviewer role.
  • Do not collapse multiple reviewer roles into one agent.
  • Do not emulate reviewer separation inside a single mixed-context analysis.
  • The lead agent may pre-scan the diff and gather context, but the role-specific review must still be produced by separate sub-agents.

Required reviewer identities:

  • star_correctness
  • star_architecture
  • star_testability
  • star_readability
  • star_simplicity

Review workflow

  1. Acquire the review target. Follow references/diff-acquisition.md.
  2. Pre-scan the change. Identify changed files, risky areas, missing tests, and places where surrounding context is needed.
  3. Launch the five reviewer sub-agents. Follow the rubric in references/reviewer-rubric.md.
  4. Write each sub-agent report to disk. Follow references/report-template.md.
  5. Merge and arbitrate. Deduplicate overlapping findings, resolve conflicts, and rebuild priorities globally.
  6. Write one consolidated report. Use references/report-template.md.

Default operating mode

Start from the repository diff rather than from static style rules.

  • Prefer the current working tree diff by default.
  • Support commit-range comparison, pr diff input, or raw patch input when provided.
  • Expand beyond the diff when necessary to understand behavior, module boundaries, calling context, or tests.
  • Stay language-agnostic. Judge the change using durable engineering principles, not language-specific taste.

Diff-first acquisition rules

When the user does not specify an input form, assume the current repository is the target.

  • First inspect repository state and collect the active diff.
  • If the diff is empty, check staged vs unstaged changes and verify the current directory and revision context.
  • If the user specified a revision range, review that range.
  • If the user supplied a pr diff or patch directly, review that artifact instead of trying to reconstruct it.
  • If the change is very large, prioritize the highest-risk areas first and clearly state any scope reduction.

Report file locations

Each reviewer sub-agent must write its own report into the current project under:

docs/five-star-reviewers/YYYY-MM-DD-XX-agent-<role>.md

Rules:

  • Create the docs/five-star-reviewers/ directory if it does not exist.
  • Use the current local date in YYYY-MM-DD format.
  • Use a stable two-digit sequence for XX so the five files are easy to scan in order.
  • Use these default filenames:

- docs/five-star-reviewers/YYYY-MM-DD-01-agent-correctness.md - docs/five-star-reviewers/YYYY-MM-DD-02-agent-architecture.md - docs/five-star-reviewers/YYYY-MM-DD-03-agent-testability.md - docs/five-star-reviewers/YYYY-MM-DD-04-agent-readability.md - docs/five-star-reviewers/YYYY-MM-DD-05-agent-simplicity.md

  • The lead agent should then write the merged report beside them, for example:

- docs/five-star-reviewers/YYYY-MM-DD-06-consolidated-review.md

If the environment prevents writing files, still produce the reports in chat, but explicitly state that the expected disk outputs could not be created.

The five reviewers

Use these reviewer prefixes so their outputs are easy to recognize as part of the same skill:

  • star_correctness
  • star_architecture
  • star_testability
  • star_readability
  • star_simplicity

Reviewers should stay inside their own lane. They may look at adjacent code for context, but they should not duplicate one another's focus. Detailed scopes, severity guidance, and anti-noise rules are in references/reviewer-rubric.md.

Consolidation rules for the lead agent

The lead agent is the final arbiter.

  • Merge duplicate findings from different reviewers into one stronger issue.
  • Resolve conflicts explicitly. For example, if one reviewer wants more abstraction and another argues the abstraction is unnecessary, choose the option that best preserves correctness with the smallest concept count and maintenance burden.
  • Re-rank findings into global p0, global p1, and global p2. Do not simply concatenate reviewer lists.
  • Keep strong ideas worth preserving under a dedicated “things to keep” section so the next AI does not over-correct.
  • Prefer actionable guidance over abstract commentary.

Severity discipline

Only raise a finding when it is grounded in the actual change.

  • p0: likely correctness break, severe boundary violation, or a critical validation gap that could ship a defect.
  • p1: meaningful maintainability, architecture, readability, or testability issue that should be addressed in the next iteration.
  • p2: optional improvement, cleanup, or simplification opportunity that is real but not urgent.

Avoid turning vague best-practice opinions into high-priority findings.

Evidence requirements

Every issue should include:

  • a concrete location such as file, function, module, or diff hunk
  • why the issue matters
  • a practical suggested fix

Do not emit generic advice such as “improve structure” or “add more tests” without naming where and why.

Budget and focus control

Keep review output dense and useful.

  • Per reviewer, prefer at most 3 p0 findings, 5 p1 findings, and 5 p2 findings.
  • Skip low-value style nits unless they materially affect comprehension or maintenance.
  • When the diff is large, spend attention on risky logic, boundaries, error handling, integration points, and test gaps before commenting on polish.

Simplicity is a first-class concern

Treat unnecessary code growth as a real engineering problem.

Specifically look for:

  • one-off abstractions with little reuse value
  • wrappers, managers, helpers, or adapters that only forward behavior
  • configuration layers that are more complex than the logic they configure
  • speculative flexibility that increases present-day maintenance cost
  • opportunities to reduce files, indirection, or branching while keeping correctness intact

Shorter code is not automatically better. Lower cognitive load and lower maintenance cost are the actual goals.

Output expectations

Produce one human-readable report that is also suitable as direct input to a follow-up AI implementation pass.

Use the consolidated report structure in references/report-template.md. The report should make it obvious:

  • what must change now
  • what should change next
  • what can wait
  • what should not be “improved” further

When to inspect more context

Broaden context when the diff alone is insufficient to judge behavior or design quality.

Common triggers:

  • a modified function depends heavily on surrounding helpers
  • a changed interface affects callers or implementers elsewhere
  • tests appear thin and related tests may exist outside the diff
  • a new abstraction claims broader reuse than the diff demonstrates
  • a bug risk depends on lifecycle, state, or integration behavior not visible in the patch alone

Be deliberate. Read more context to improve judgment, not to wander.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

77.24%
按下载量换算847

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills