1---
2tagline: "A design review with scoring, persona tests, and automated detection."
3---
4
5## When to use it
6
7Reach for `/critique` when you want an honest second opinion on something you already built. Not "does it work" but "is it any good". The skill scores your interface against Nielsen's 10 heuristics, runs cognitive load checks, tests through persona lenses, and cross-references an automated detector for 25 concrete anti-patterns.
8
9Use it when a page is functionally done and you want to know if it reads as intentional or as AI slop.
10
11## How it works
12
13`/critique` runs two independent assessments in parallel so they do not bias each other.
14
15The first is an **LLM design review**: the model reads your source, visually inspects the live page if browser automation is available, and walks the impeccable skill's full DO/DON'T catalog. It scores Nielsen's heuristics, counts cognitive load failures, traces the emotional journey through the flow, and flags AI slop.
16
17The second is an **automated detector** (`npx impeccable detect`) that deterministically finds gradient text, purple palettes, side-tab borders, nested cards, line length problems, and the other visible fingerprints of generic AI output.
18
19The two reports merge into one prioritized list: what is working, the three to five things that need fixing, and the provocative questions worth answering before shipping.
20
21## Try it
22
23Point it at a page:
24
25```
26/critique the homepage hero
27```
28
29You get back a scored report. Typical shape:
30
31- **AI slop verdict**: pass / fail with the specific tells
32- **Heuristic scores**: 10 numbers, 0 to 4
33- **Cognitive load**: failure count out of 8
34- **Priority issues**: three to five items, each with what, why, and fix
35- **Questions to answer**: the ones the interface itself cannot decide for you
36
37From there, pair with `/polish` or `/distill` to act on the fixes.
38
39## Pitfalls
40
41- **Running it on incomplete work.** Critique is for finished pages. An empty state with three TODOs will score badly because it is not done, not because it is bad.
42- **Ignoring the questions at the end.** They are usually the highest-leverage fixes.
43- **Treating the heuristic scores as a grade.** They are diagnostic, not evaluative. A 3/4 on a heuristic that matters less for your context is fine.