Workloft
▸ WORKLOFT RESEARCH NOTE №66 · 3 AUGUST 2026

The Same Dashboard Scored 51 and 97

We tested an open-source design-taste skill for coding agents. Same model, same prompt, one dashboard built with it and one without. A blind score put them 46 points apart. The interesting part is what did the work.

§1The claim worth testing

There is a fast-growing shelf of open-source "design taste" skills for coding agents right now, things like taste-skill, styleseed and claude-design. They all promise the same thing: stop your AI agent shipping generic, obviously-generated frontends. It is easy to dismiss the lot as a longer prompt in a trench coat.

One of them makes a sharper, testable claim, and it is the one worth checking. StyleSeed openly publishes that its rule list on its own did not reliably help. In their own benchmark the raw rules moved Codex up a little and moved Claude Code down by nearly four points. What helped was wrapping the rules in a scored gate: build the screen, score it against a rubric, and revise until it clears a bar before a human ever sees it. That lines up with everything we already believe about gates, which is exactly why we wanted to test it on our own work rather than take it on faith.

§2The test

One functional spec: a small B2B analytics dashboard, four KPI cards, a revenue chart, a table of recent transactions, realistic fake data, one self-contained HTML file. We handed that identical spec to the same model (Claude Opus 4.8) twice.

Arm A got the spec and nothing else: build it the way you normally would. Arm B got the spec plus StyleSeed's method, the "operations-console" grammar and the seven-category rubric, and was told to self-score and revise until it cleared 85 before finishing. Then, to keep ourselves honest, a third agent scored both files blind against the same rubric, citing line numbers, without being told which arm produced which.

§3The result

The blind judge put the plain build at 51 out of 100, an F, and the StyleSeed build at 97, an A. Here is the same dashboard, same model, same prompt, side by side.

The plain dashboard: four equal-weight KPI cards, a green Paid pill on almost every table row, gradient bars, no loading or empty states.
Arm A, no guidance · blind score 51 / 100 (F)
The StyleSeed dashboard: a focal Revenue card, neutral-grey Paid status with colour reserved for the Failed and Pending rows, line icons, named action buttons, explicit data states.
Arm B, StyleSeed gate · blind score 97 / 100 (A)
Both built by Claude Opus 4.8 from the identical prompt. The only difference is that Arm B ran a scored design gate before it stopped.

The gap is not the judge being generous. The fixes are real, and they are the nameable tells that make a UI read as "generated":

category (of max)plaingated
Colour discipline (16)016
States (12)012
Hierarchy & type (16)716
Coherence (20)1420
Total (100)5197

§4Three honest caveats

This is one build per arm, not a benchmark, so read the numbers as a single vivid data point, not an average. And our plain arm scored unusually low because it clamped to zero on two whole categories, no data states and leaky status colour, which dragged the total down hard. A luckier plain run scores higher. So treat 46 points as near the ceiling of the effect, not its typical size. What is repeatable is the kind of win: the structural tells got fixed.

Second, the gated arm was handed the very rubric it was later judged on, so of course it scores well against it. That is why the screenshots matter more than the number. Look at the two: the difference is plainly visible to a human who has never heard of the rubric. The gate is not gaming a metric, it is removing real defects.

Third, and this is the actual finding: the active ingredient is the gate, not the rules. A rule list pasted into a prompt is easy for a model to nod at and ignore, which is why StyleSeed's own numbers show raw rules can make things worse. A render, score, revise loop is not ignorable, because nothing ships until the score clears the bar. We keep relearning this in every domain we work in. It is why we gate code review, why we gate our eval panel, why we red-teamed our own agents. Design is just one more place a scored floor beats a longer instruction.

§5What we'll actually do with it

Two decisions, split by whether the work is brand-locked. For un-branded work, a fresh internal dashboard, a prototype, a quick throwaway tool UI, we will wire a design-score gate into the build, because that is exactly where we currently wing it and ship the first draft. That is the gap this fills.

For brand-locked work, our own product surfaces and client deliverables that already run tight design systems, we will not take a third-party skill's default look. The move there is to feed our own tokens in as the grammar and keep the gate, so the score enforces our system rather than someone else's taste. A generic taste skill pointed at a locked brand fights it; a gate pointed at your own tokens defends it.

You do not have to install this specific skill, and it is early and rough in places. The transferable lesson is smaller and more durable than any one tool: for UI, as for code and for evals, a scored gate beats a longer prompt. Build the second check, not the bigger instruction.


Methodology note. Both dashboards were built by the same model, Claude Opus 4.8, from an identical functional spec; the only difference was that Arm B was given StyleSeed's operations-console grammar and seven-category rubric and told to self-score and revise to a floor of 85 before finishing (the render-score-revise gate). Both files were then scored blind against that rubric by a separate agent that was not told which arm produced which, citing line numbers. What we did not do: multiple runs per arm (this is one build each, so the exact 51 and 97 are a single data point, not a measured average), or test against a brand-locked output. StyleSeed is open-source (MIT): github.com/bitjaru/styleseed. Nothing here is an endorsement of one tool over its neighbours; it is evidence for a discipline, a scored gate, of which the rule list is only the raw material.