AI

How to Scope an AI Feature Without the Hype

By Tom Bore · 6 August 2026 · 6 min read

Adding AI to a product goes wrong when the model comes first and the job comes second. Scope it the other way round. Name the job, decide whether AI is the right tool, and only then talk models.

A good AI feature is a good feature that happens to use AI. The scoping questions below sort the ones worth building from the demos that never survive real users.

Start with the job, not the model

Write down the task the user is trying to finish and what a good outcome looks like. If a rule, a filter or a search box does the job, use that. AI earns its place where the input is messy or open-ended and a fixed rule can't keep up.

Set the accuracy bar and the failure mode

Decide how right it has to be before you build, and what happens when it's wrong. A wrong draft the user edits is cheap. A wrong action taken on the user's behalf is not. Design for the mistake first: show the reasoning, let people correct it, and keep a human on anything costly to undo.

Prove the hard part cheaply

Before you build the feature, run the model over a real sample by hand or in a notebook and check the output against what you'd accept. This proof of concept answers the one question that sinks most AI features: is it accurate and useful enough on your actual data? If the dry-run fails, no amount of UI saves it.

Buy the model, build the product

For most features, call a hosted model through an API rather than training your own. It's faster, and the provider carries the cost and upkeep of the model. Reach for fine-tuning or self-hosting only when a specific need, data control, latency or unit cost at scale, forces it. That's build vs buy applied to models.

Cost, latency and guardrails

  • Price a call and multiply by real usage. AI features carry a running cost per use, on top of the build cost.
  • Check the response is fast enough for where it sits in the flow.
  • Handle the bad output: limits, checks and a graceful fallback when the model fails.

If the feature touches EU users, place it against the EU AI Act tiers while you scope, so transparency and oversight are built in rather than bolted on.

In short

Job first, accuracy and failure mode next, a dry-run before the build, and a bought model under a product you own. Scope it that way and the feature earns its place. If you're weighing an AI feature, tell us the job and we'll help you scope it.