Stronger guardrail: detector must run after LLM review

Claude was running the detector in parallel with the LLM review
despite the section ordering. Added explicit instruction: "Do not
run the detector before or in parallel with your LLM review."

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Paul Bakaus
2026-03-19 18:12:18 -07:00
co-authored by Claude Opus 4.6
parent 87067cad7e
commit a243cbfdcb
2 changed files with 8 additions and 4 deletions
+4 -2
View File
@@ -30,9 +30,11 @@ Evaluate: **visual hierarchy** (eye flow, primary action clarity), **information
---
## AUTOMATED DETECTION (After LLM Review)
## AUTOMATED DETECTION
After forming your own assessment, run the bundled deterministic detector to catch issues you may have missed. It flags 25 specific patterns (AI slop tells + general design quality).
**Run this ONLY after you have completed your full Design Critique above.** Do not run the detector before or in parallel with your LLM review. Your unbiased assessment must come first.
The bundled deterministic detector flags 25 specific patterns (AI slop tells + general design quality) and may catch issues you missed.
```bash
node scripts/detect-antipatterns.mjs --json [--fast] [target]
+4 -2
View File
@@ -30,9 +30,11 @@ Evaluate: **visual hierarchy** (eye flow, primary action clarity), **information
---
## AUTOMATED DETECTION (After LLM Review)
## AUTOMATED DETECTION
After forming your own assessment, run the bundled deterministic detector to catch issues you may have missed. It flags 25 specific patterns (AI slop tells + general design quality).
**Run this ONLY after you have completed your full Design Critique above.** Do not run the detector before or in parallel with your LLM review. Your unbiased assessment must come first.
The bundled deterministic detector flags 25 specific patterns (AI slop tells + general design quality) and may catch issues you missed.
```bash
node scripts/detect-antipatterns.mjs --json [--fast] [target]