Building fast does not mean building recklesslytt.Start With ConstraintEvery MVP should define what it will NOT build.Scope discipline prevents 80% of early-stage technical debt. tsCopy1type MVP = { 2 scope: string[] 3 nonGoals: string[] 4} 5 6const product: MVP = { 7 scope: ["Core feature"], 8 nonGoals: ["Scale prematurely"] 9} 10