Score existing work against your rubric. Severity-tagged findings, row by row. Mental model: "does this meet the bar?" Don't rewrite — flag, cite, rank.
Custom Instructions (or as the first message in a new chat). Then send your artifact as the next user message. Reuse forever — never edit the prompt itself.
Inherits from Fagan-style inspection (Michael Fagan, IBM 1976) — the discipline behind Google's "readability" code-review process and behind aerospace/medical-device spec inspection (DO-178C, IEC 62304). The reviewer's job isn't to rewrite; it's to surface defects against an explicit rubric (correctness, completeness, traceability, testability) and to rank severity. The same discipline you already apply to PRDs against HIPAA and accessibility checklists — the AI-assisted version inherits the rubric, not the judgment.
- Sycophantic agreement with the author's framing When a draft asserts "this is HIPAA-compliant," the model follows the premise instead of challenging it. GPT-4o, Claude Sonnet, and Gemini 1.5 Pro showed 58% overall sycophancy on factual/safety questions; Gemini hit 62%.[arxiv 2411.15287, EMNLP 2025]
- False negatives on long artifacts Reviewers cannot exhaustively enumerate cases as input length grows. Multi-path error handling and edge-case branches are skipped even with chain-of-thought.[arxiv 2508.12358]
- Surface nits crowd out structural defects "LLM Critics Help Catch LLM Bugs" (Saunders et al., OpenAI 2024) shows AI critics produce more comments than humans but bias toward style over correctness — exactly inverted from what a senior reviewer prioritizes.[arxiv 2407.00215]
-
Fabricated citations
Invented section numbers, library names (~20% of suggested packages don't exist), invented HIPAA subparts that "look right." A PRD review that confidently cites
HIPAA §164.502(j)(2)may be citing a subpart that doesn't exist.[diffray] - Authority laundering Once a draft is in the prompt context, the model treats it as ground truth and will defend the author's wrong claim if pushed back on. The opposite of an adversarial review posture.
- "Adopt an adversarial posture. Assume the draft is wrong until proven correct." Defends sycophantic agreement. Without this, the model performs review theatre — agreeing with the author's framing.
- "Output a numbered defect list with severity (Blocker / Major / Nit), not prose." Defends nit-flooding. Forces ranking; you can audit the Blockers count separately.
-
"Quote every regulation, AC, or section number verbatim from context. If not in context, mark
[NOT IN SOURCE]." Defends fabrication. Auditable trail for compliance review. - "For artifacts longer than 2 pages, review one section at a time. Do not summarize the whole." Defends length-induced false negatives. Section-level scoping keeps each pass exhaustive.