Rapid Prototyping

An FDE's superpower is turning a vague problem into something the customer can see and touch within days — because a rough working demo teaches more than a month of meetings.

Once you’ve framed the real problem (post 2), the temptation is to design the proper solution. Resist it. The forward deployed engineer’s most valuable early move is to build the smallest thing that makes the problem — and a candidate solution — concrete, fast. A prototype is not a small version of the final product; it’s an instrument for learning, persuasion, and momentum. This post is about building it well.

Why prototype first

Three reasons, each decisive:

The gotcha: the goal of a prototype is learning per day, not code quality. Every hour spent on abstractions, tests, and polish that don’t change what you learn this week is an hour stolen from the loop that actually reduces risk. Optimize for speed of insight.

What to build (and what to fake)

The art is choosing the thinnest slice that proves the risky assumption. Ask: what’s the one thing that, if it doesn’t work, kills the whole idea? Build that; fake everything else.

Don't build:  [ full ingestion ][ general model ][ polished UI ][ auth ][ tests ]
Do build:     one real record ─► the risky step (real) ─► a rough view the user reacts to

The demo loop

FDE prototyping runs on a tight cadence: build a slice, show it to the customer, watch their reaction, adjust, repeat — ideally weekly or faster. The reaction is the data. Watch where they lean in, where they frown, what they immediately try to do that you didn’t build. Demo early and demo unfinished; a wobble you explain (“this part’s faked for now”) is fine and actually builds credibility, because it shows the seams honestly.

The gotcha: a demo that’s too polished sets the wrong expectation — the customer thinks you’re nearly done when you’ve validated one slice, and they’ll be confused when “the rest” takes real time. Be explicit about what’s real and what’s scaffolding.

Managing the prototype’s lifespan

Here is the danger unique to FDE prototyping: the prototype works, the customer loves it, and now they want to use it — in production, on Monday. The disposable notebook you built to learn is suddenly load-bearing. Two failure modes bracket this moment:

The healthy path is deliberate: decide consciously which parts of the prototype graduate to real code and which were always scaffolding, and be honest with the customer about the difference between “it demoed” and “it’s production-ready” (integration and hardening are post 4). Treat the prototype as a spec you can run — it captured the real requirements — and rebuild the risky parts properly while keeping the validated shape.

The gotcha: “it works in the demo” and “it’s ready for production” are separated by exactly the work customers can’t see — real data volumes, error paths, edge cases, security, deployment. A prototype pushed straight to prod because it looked done is the most common way FDE goodwill turns into a 2am incident.

Keep the throwaway from becoming permanent

Even while moving fast, a little discipline pays off: keep the prototype in version control, jot down the assumptions you hard-coded (so you know what to revisit), and note which shortcuts are safe to keep versus which are load-bearing lies. This isn’t building it “properly” — it’s leaving yourself a map for when the prototype inevitably outlives its intended lifespan, which it usually does.

A prototyping example

Continuing the hospital bed-placement problem: the risky assumption is “can we produce a trustworthy placement suggestion from the EHR data fast enough to matter?” Everything else — a polished UI, auth, real-time sync, multi-ward rollout — is secondary. So the first prototype:

By Wednesday the nurse is reacting to real suggestions. They immediately surface what interviews missed (“it can’t put a post-op patient there”) — that reaction is the whole point. You’ve validated (or killed) the core idea in days, using one unit’s exported data, before committing to the hard live-EHR integration (post 4).

The gotcha: the seductive wrong move is to spend week one building the “proper” live EHR integration first, because it feels like real engineering. If the ranking turns out untrustworthy, you’ve sunk the hardest work into plumbing for an idea that doesn’t fly. Prove the risky core on faked plumbing; build the plumbing once the core earns it.

When the prototype says “no”

Sometimes the prototype’s most valuable outcome is proving the idea doesn’t work — the data can’t support the analysis, the model isn’t accurate enough, the workflow doesn’t fit. That’s a win, discovered in days instead of months. An FDE who can say “we tried it, here’s what we learned, here’s the better direction” builds more trust than one who ploughs ahead. Failing fast and honestly is a feature of the role, not a failure of it.

Key takeaways

Further reading