review-it

作者 DevOtts已验证

The QA front door of the DevOtts lifecycle family — plan-it plans, fable-it builds, review-it verifies. Runs the plan-phase Test Contract against the build and enforces an 11-rule gate catalog that makes false-VERIFIED claims un-shippable.

0
Stars
0
Forks
HTML
语言
2026/8/24
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/DevOtts/review-it

快速入门

使用 review-it 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

/review-it

The QA front door — prove the build obeys the plan

plan-it plans. build-it builds. review-it verifies.
The independent verification leg of the plan → build → review triangle.

review-it — the lifecycle's review stage: four modes over an 11-rule gate catalog, emitting one evidence-backed report

Quick Start License: MIT

Install  ·  Why  ·  How it works  ·  The gate catalog  ·  What's bundled  ·  Changelog

Why

Two real incidents define this plugin (the Airtable postmortem):

  1. A run shipped "VERIFIED" UI with 4 operability bugs — the tests checked that a combobox rendered text, never that it could be typed into, opened, or used to select anything.
  2. A third-party write whose record rendered empty in Airtable's own UI while every API GET looked correct — verified in the wrong layer.

Both were caught by a human, after the report said green. review-it makes those two failures — and nine sibling classes — mechanically un-shippable, with a gate catalog where every rule is written as trigger → test → action and every verdict is a lookup into an evidence ledger, not a judgment call.

And the quiet failure underneath them all: a QA run with no authored test contract that quietly reverse-engineers its expectations from the code it is testing — and then grades itself green. review-it tags every verdict's oracle AUTHORED or DERIVED; a DERIVED green means "self-consistent," never "obeys the plan." No self-graded green.

Installation

# 1. Add the DevOtts marketplace (once — shared with build-it / plan-it)
/plugin marketplace add DevOtts/review-it

# 2. Install
/plugin install review-it@devotts

# Or as a standalone skill package
npx skills add DevOtts/review-it

Then hand it a target:

/review-it qa/test-plan-master.md      # contract-qa: run the plan-phase Test Contract
/review-it PR #42                      # pr-review: severity-tiered, evidence-cited
/review-it prod                        # deploy-verify: is it ACTUALLY live + ready?
/review-it <feature dir with third-party writes>   # side-effects verification

How it works

/review-it <target>
   │
   ├─ MODE contract-qa    → PRIMARY: run the plan-phase Test Contract against the build
   ├─ MODE side-effects   → third-party writes read back from the target's OWN API + UI
   ├─ MODE deploy-verify  → deployed-code ladder + [REAL] re-runs + release checklist
   └─ MODE pr-review      → SECONDARY: severity-tiered findings, blocking vs advisory
   ▼
  GATES  — 11 rules, applied in every mode
   ▼
  REPORT — one format, shared with build-it's evidence ledger
  • Preflight (R9) — prove which app/branch/checkout is under test before any verdict.
  • Verifiability precheck — unreachable target ⇒ honest IMPLEMENTED-NOT-VERIFIED with a named blocker, never a manufactured green. [REAL] cases are never verified on a mock.
  • No-contract ladder — invoked with no Test Contract, it never refuses and never self-grades: locate an authored oracle (plan-it DoDs/goals count) → derive only if none → confirm → label provenance → persist the derived contract as durable coverage.
  • Routing, not re-implementation — execution goes to the existing specialists by name: full-qa (functional/CDP QA), iterate (fix loops), chrome-cdp-control (authenticated real Chrome), make-eval (LLM evals), parallel-lifecycle (isolation).
  • The honesty layer — every mode's verdict passes an evidence adapter (VERIFIED is a ledger lookup), a system-of-record adapter (subagent narration is never evidence), and a fresh-context verifier that reads the pixels, not just the prose.

The gate catalog

#GateKills
R1wrong-layerthird-party writes "verified" without reading the target's own API and UI
R2operability"shows a value" passed off as "is operable"
R3read-stabilityverdicts off a single read; false regressions off read-after-write lag
R4first-lookthe human becoming the un-instrumented first tester
R5directive-lookupcredential/mechanism proposals that ignore standing rulings
R6narration≠evidencesubagent self-reports accepted without record-of-truth re-derivation
R7pixels-over-prosereports whose screenshots contradict their claims
R8deploy-truthMERGED / "Ready" / green-cached-build treated as deploy evidence
R9environment-identityverdicts issued against the wrong app/branch/checkout
R10debrief-methodologypostmortems that log bugs but never the methodology hole
R11oracle-provenancethe self-grading trap — expectations derived from the code under test reported as "obeys the plan"

Full specs (each trigger → test → action): plugins/review-it/skills/references/gate-catalog.md.

What's bundled

PiecePathJob
Front doorplugins/review-it/skills/review-it/mode detection, preflight, oracle ladder, routing, report
side-effectsplugins/review-it/skills/side-effects/third-party write verification (the Airtable class)
deploy-verifyplugins/review-it/skills/deploy-verify/staging/prod: deployed-code ladder → READY / NOT-READY
pr-reviewplugins/review-it/skills/pr-review/severity-tiered review process, loads .claude/review-config.md
referencesplugins/review-it/skills/references/gate catalog · report format (shared with build-it) · vocabularies · authoring standards · CI guidance

The family

plan-itbuild-itreview-it
Jobdiscovery → spec → agile splitgoal + DoD → deliverycontract → verified verdicts
The bridgeauthors the Test Contractadopts it as its DoDruns it against the build

review-it consumes plan-it's Test Contract 1:1 and feeds its verdict rows into build-it's evidence ledger — one report format, hosted here, both plugins point at it.

Security

review-it is read-mostly by design: it writes only its report/ledger conventions in consumer repos, never proposes credential storage, human-gates credential operations and destructive steps (safety ladder), and routes authenticated browser work to chrome-cdp-control's per-write confirmation gate. Details in SKILL.md.

License

MIT — see LICENSE.


Authored by DevOtts.

常见问题

What is review-it?

review-it is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by DevOtts. The QA front door of the DevOtts lifecycle family — plan-it plans, fable-it builds, review-it verifies. Runs the plan-phase Test Contract against the build and enforces an 11-rule gate catalog that makes false-VERIFIED claims un-shippable. It has 0 GitHub stars.

Is review-it safe to use?

Yes. review-it passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install review-it?

Clone the repository with "git clone https://github.com/DevOtts/review-it" and add it to your Claude Code skills directory (see the Installation section above). review-it ships a SKILL.md manifest, so compatible agents can discover and load it automatically.

What programming language is review-it written in?

review-it is primarily written in HTML. It is open-source under DevOtts on GitHub, so you can review or fork the full source.

Are there alternatives to review-it?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh review-it against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情