All posts
Essay2 min read

What a design engineer actually does

The title sounds like a compromise between two jobs. In practice it's a third thing — and it's the most useful person to have on a small team.

On this page

"Design engineer" sounds like a job title invented to avoid a turf war — half designer, half engineer, fully neither. That framing misses the point. It isn't the midpoint between two roles. It's a third thing: the person who collapses the distance between deciding what to build and building it.

The handoff is where quality dies

On most teams, an idea travels through a relay: PM writes a doc, designer makes a mock, engineer implements it. Every baton pass loses information. The designer didn't know the animation would jank on a real device. The engineer didn't know the 8px gap was load-bearing. Nobody's lying — the context just doesn't survive the trip.

A design engineer removes trips from the relay. They mock in code, feel the interaction on a real device, and adjust the design because they can see what it costs. The feedback loop that used to span three people and two weeks happens in one head in an afternoon.

It's a posture, not a tool list

People assume the role is defined by tooling — knows Figma and React. The tools are incidental. The actual skill is holding two questions at once:

tsx
// Not "is this pixel-perfect?" and, separately, "does this code work?"
// But the same question, asked together:
function shouldShip(change) {
  return looksRight(change) && feelsRight(change) && holdsUpInProduction(change);
}

You can't answer feelsRight from a static mock, and you can't answer looksRight from a passing test. The role exists to keep both true at the same time — because users experience them at the same time.

Why it matters for a small team

If you're building products solo or on a tiny team, this is the highest-leverage way to work. There's no one to hand off to, so the handoff tax is the whole tax. The faster you can move from "what if" to "here's how it feels," the more shots on goal you get before you run out of runway.

That's most of why I write here: every teardown and note is reps at exactly this — looking at something, understanding why it works, and being able to rebuild it. The judgment compounds.

Related posts