The Art of Scoping

Fabian Schultz

Scoping software is difficult. Commit too much, and you’re wasting time that you could’ve spent learning from your users. Commit too little and watch nobody adopt your incomplete feature. It’s a balancing act — the difference between an MVP (Minimum Viable Product) and SLC (Simple, Lovable, and Complete).

When looking for examples of what makes a great MVP, you usually read about companies that aim to achieve product-market fit. Maybe early Airbnb or Uber. But how does this apply when building features and capabilities for an existing service that’s well beyond that point?


I recently observed a great example of this kind of scoping done right. A couple months ago, Stripe released Stripe Apps. Apps allow developers to extend the UI of the Stripe Dashboard with additional functionality and views.

From what I could tell while browsing Twitter, Stripe only took a couple months to launch the first version of Apps. Scoping a complex project like this down to a well-rounded product must’ve been challenging. Not just in the broad strokes, but I’m sure it required making tough decisions on lots of details along the way.

Yet one of those decisions in particular caught my eye. To enable developers to build apps, Stripe had to build an entire component library to support common use cases — on top of the core functionality. One of the components developers would likely need to build a Stripe app is a date picker, to filter payment-related information by a date range. If you’ve ever designed or built a date picker, you know what a time-consuming task that can be. Safe to say, it would take a long time to get it right.

A full date picker, including a popover calendar

So what did they do? Instead of scoping it out of the first release, or building a full-featured date picker with a popover calendar and everything, they launched with a masked input field for dates. This enabled their users to effectively solve one of the most common use cases when building an app from the beginning. They were able to release it in a short amount of time on par with their quality standards. On top, they kept the option of iterating on it in the future, without breaking any existing behavior.

A simple masked input field for dates

This low-level, almost invisible decision may seem trivial, but it’s one of the hundreds of decisions you have to make when scoping and building software. Finding that sweet spot of not too much, not too little, to get it out on time and in the right quality is the art of scoping.