All use cases

BMI Calculator

Health metrics.

Prototypes
Prompt
Create a health calculator for BMI. Input height/weight with sliders, showing the result on a color-coded gauge.
Use this

Why this exists

BMI is one division problem: weight over height squared. Yet search for it and you land on pages buried in ad units, newsletter popups, and trackers, all wrapped around a formula a schoolkid could do on paper. The calculation was never the hard part, the clutter around it is. This blueprint strips that away. You describe the calculator you want, and you own a clean one that answers as you drag a slider, with nothing watching over your shoulder.

What the agent builds

A BMI calculator built around feel: height and weight sliders that update the number as you drag, and a color-coded gauge showing where you land across the underweight, normal, overweight, and obese bands at a glance. No submit button, no reload, the result moves with the input. The math is the standard formula done right, and every band is labeled so the number actually means something.

You watch it happen in the task workspace: the agent scaffolds the project, wires the sliders to the gauge, starts the dev server, and confirms the page renders before handing you a live preview. The code lands on a branch in your repository with a pull request ready.

Make it yours

The first version is a base you steer with plain follow-up messages:

  • "Add an imperial toggle for pounds and feet/inches."
  • "Show my ideal weight range for my height."
  • "Add a waist-to-height ratio next to the BMI."
  • "Save my last reading so I can track it over time."

Each follow-up wakes the same repository and the agent continues on its own code.

FAQ

Do I need to know how to code? No. You describe the calculator; the agent writes it, checks it renders, and ships the code to your repository.

Is my health data sent anywhere? No. The math runs in your app, in your browser. Nothing about your weight or height leaves the page.

Can I add more health metrics? Yes. Ask for BMR, a body-fat estimate, or a metric of your own, and the agent extends the same code.

BMI Calculator | OutcomeDev Use Cases