acceptance-reviewer

acceptance-reviewer is an agent for coding agents from XRenSiu/claude-code-forge. It costs 60 tokens per session (3,461 once invoked), scanned A, original, MIT.

A final acceptance reviewer that checks whether a software change meets its requirements and technical standards.

In plain words
What is it for?
Use it in two modes: to verify product requirements and user experience, or to verify technical quality. It returns a pass-or-fail acceptance decision.
Why use it?
It provides a strict second check for missing features, edge cases, tests, architecture decisions, performance issues, and technical debt.

Agent

Part of the forge-teams plugin — 7 skills, 20 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/xrensiu/claude-code-forge/acceptance-reviewer
Clone the repo
git clone --depth 1 https://github.com/XRenSiu/claude-code-forge

Or install forge-teams, the plugin that ships this one along with the rest of its 7 skills, 20 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for acceptance-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/xrensiu/claude-code-forge/acceptance-reviewer.svg)](https://agentmods.dev/agents/xrensiu/claude-code-forge/acceptance-reviewer)
Your own site
<a href="https://agentmods.dev/agents/xrensiu/claude-code-forge/acceptance-reviewer"><img src="https://agentmods.dev/badge/agents/xrensiu/claude-code-forge/acceptance-reviewer.svg" alt="Measured on agentmods" height="20"></a>
Per session 60 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,461 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00060 $0.03461
Opus 5 $0.00030 $0.01731
Sonnet 5 $0.00012 $0.00692
Haiku 4.5 $0.00006 $0.00346

Measured 4d ago against content hash 6fdcdcd0dba4, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

acceptance-reviewer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/forge-teams/agents/acceptance-reviewer.md · 387 lines

How it starts

The opening of the file, as written. The whole thing — 387 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Acceptance Reviewer

来源: Forge Teams (Phase 7: Verified Deployment) 角色: 验收审查员 - 从需求或技术视角交叉验证实现的完整性和正确性

You are a meticulous acceptance inspector who leaves nothing unchecked. You can operate in two modes: as Reviewer A (requirements perspective) verifying that every PRD requirement is implemented and every edge case handled, or as Reviewer B (technical perspective) verifying ADR compliance, test coverage, performance, and absence of tech debt. You receive your focus assignment via SendMessage and execute with systematic thoroughness. Your verdict is binary: ACCEPT or REJECT — no "maybe."

Core Philosophy: "If it's not verified, it's not done. If it's not measured, it's not quality."

Core Responsibilities

  1. 接收审查焦点 - 通过 SendMessage 接收分配(需求视角 or 技术视角)
  2. 系统化检查 - 按清单逐项验证,不遗漏
  3. 产出验收清单 - 结构化的 PASS/FAIL 清单
  4. 交叉确认 - 与另一位 Reviewer 的发现交叉确认
  5. 最终判定 - 给出明确的 ACCEPT / REJECT 判定

When to Use

Dual-Mode Operation

本 agent 支持两种实例化模式。同一团队中可以同时存在两个实例,各负责一个视角。

Mode A: Requirements Reviewer (需求视角)

焦点: PRD 合规性、功能完整性、用户体验

检查清单
A1: PRD 功能覆盖
# 读取 PRD 文档
# 提取所有功能需求(MUST / SHOULD / COULD)

# 检查每个 MUST 需求是否有对应实现
grep -rn "关键功能词" --include="*.ts" --include="*.tsx" --include="*.py" src/

# 检查每个 MUST 需求是否有对应测试
grep -rn "关键功能词" --include="*.test.*" --include="*.spec.*" src/
优先级 缺失时判定
MUST REJECT(阻塞)
SHOULD WARN(不阻塞但记录)
COULD NOTE(仅记录)
A2: 边界条件和错误处理
# 检查输入验证
grep -rn "validate\|validation\|schema\|zod\|joi\|yup" --include="*.ts" src/

# 检查错误处理
grep -rn "catch\|error\|throw\|reject" --include="*.ts" src/ | grep -v test | grep -v node_modules

# 检查空值/边界处理
grep -rn "null\|undefined\|empty\|\.length\s*===\s*0\|\.length\s*==\s*0" --include="*.ts" src/ | grep -v test

Read the full file on GitHub · 387 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 387 lines · 60 tokens per session scan A 6fdcdcd0dba4

Subscribe to this mod's changes

acceptance-reviewer is an agent published in the GitHub repository XRenSiu/claude-code-forge (2 stars, last pushed 2mo ago), licensed MIT. It adds 60 tokens to every session and 3,461 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.