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

beo-reviewingbeo 审查

Agent Skill

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

总安装

447

周安装

19

GitHub Stars

1

下载量

157
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/minhtri2710/skills --skill beo-reviewing

简介

作为最终质量关卡,验证实现是否符合锁定决策与用户期望。

  • 输出需遵循通信标准:先陈述事实,再附证据引用。
  • 对 P1/P2/P3 问题分类并提出明确改进建议。
  • 重点检查安全性、对齐度与实际可用性三大维度。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • beo-reviewing 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

See ../reference/references/shared-hard-gates.md § Shared References Convention.

Beo Reviewing

Overview

Reviewing is the final quality gate after execution. Its job is to verify that the implemented final execution scope is safe, aligned with locked decisions, and actually acceptable to the user before the feature passes quality criteria.

Core principle: review finds truth, not excuses.

Communication Standard

All review outputs (specialist findings, P1/P2/P3 classifications) must follow ../reference/references/communication-standard.md: plain language first, evidence with quotes or path:line, concrete failure scenario, and smallest fix.

Hard Gates

Default Review Loop

  1. confirm review is allowed for the final execution scope
  2. run automated specialist review
  3. classify findings by severity and create follow-up work when needed
  4. run human UAT against locked decisions and exit-state claims
  5. announce pass or fail: on pass, hand off to beo-compounding; on fail with fixable issues, loop through reactive fixes; on fail with unfixable issues, route back to the appropriate skill
  6. hand off to compounding only when review is truly complete

Use references/reviewing-operations.md for the exact prerequisite checks, artifact verification, UAT handling, and finishing sequence. Use references/review-specialist-prompts.md for the five-specialist review structure and severity rules.

Quick Mode: For Quick-scope features (see ../reference/references/pipeline-contracts.md), skip specialist subagents, do a quick manual artifact check, explicit per-claim user confirmation (Quick mode skips specialist subagents, not the UAT requirement), then run build/test/lint and close. See references/reviewing-operations.md Section 6 for details.

Review Prerequisites

Confirm the final execution scope is actually complete and all required artifacts are available before starting review. See references/reviewing-operations.md Section 1 for the exact prerequisite checks.

Scope Rule

Review the executed scope only. For multi-phase work, that means the final approved scope for the feature only when no later phases remain. If later phases still exist, do not finish the feature in review; route back to planning-aware flow instead.

Automated Specialist Review

Run the canonical five-specialist review defined in references/review-specialist-prompts.md. The review must cover, at minimum:

  • implementation correctness
  • contract / interface safety
  • test and verification adequacy
  • architecture / maintainability risk
  • user-facing or workflow regression risk

Use the reference file for the exact prompts and dispatch structure. Do not treat code inspection alone as sufficient evidence; review findings about tests, build, lint, runtime behavior, or generated artifacts must be backed by concrete verification evidence.

Severity Semantics

Do not collapse the P1/P2/P3 categories. Their placement and blocking behavior matter. See references/review-specialist-prompts.md for the severity table and rules.

Reactive Fix Loop

Reactive fixes are part of finishing the current feature. P2 and P3 work are not. See references/reviewing-operations.md and references/review-specialist-prompts.md for the exact P1 fix-and-re-review cycle. Do not patch implementation directly inside review just to save time. Route fixes back through execution with proper bookkeeping.

Human UAT

Human UAT is not optional. Review automated findings first, then walk the user through the implemented outcome against locked decisions and exit-state claims.

Use the canonical review/UAT approval rules from ../reference/references/approval-gates.md (items 3 and 6). Use references/reviewing-operations.md Section 4 for the exact UAT loop and outcome handling.

Intent Changes During UAT

If the user says the implementation is wrong because the desired behavior changed:

  • update CONTEXT.md to reflect the new decision
  • if the change is minor and does not alter architecture or sequencing, create follow-up work using the proper severity path
  • if the change is major, stop review, strip approved, and route back to beo-planning

Do not patch over a changed feature definition inside review. Do not misclassify changed user intent as a normal defect; treat it as a planning/context change and route accordingly.

Finishing Rules

Use references/reviewing-operations.md Section 5 for the exact conditions, finish sequence, artifact verification, and final reporting. When review passes with non-blocking follow-up work, keep P2/P3 items outside the current epic unless the user explicitly wants them folded into the same feature closure path.

Handoff

Only after review genuinely passes:

  1. close the epic in br: br close <EPIC_ID>
  2. write fresh state using ../reference/references/state-and-handoff-protocol.md
  3. set the state to status: "learnings-pending" and next: "beo-compounding"
  4. announce that the review gate has passed and hand off to beo-compounding

The epic must be closed before writing learnings-pending state. Compounding assumes a closed epic and will reject an open one.

Do not hand off to compounding while P1 fixes, unresolved UAT, or planning-level intent changes remain.

Context Budget

Follow ../reference/references/shared-hard-gates.md § Context Budget Protocol. Skill-specific checkpoint items: review progress, open findings by severity, UAT status, and whether review is waiting on execution, planning, or user confirmation.

Red Flags & Anti-Patterns

Do not collapse severity levels, skip artifact verification because the implementation "looks fine," or let automated review substitute for explicit human UAT.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.7%
按下载量换算53

Claude

29.54%
按下载量换算46

Cursor

19.18%
按下载量换算30

Gemini CLI

9.9%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills