You built it in a weekend. Lovable, Bolt, Replit, v0, maybe Cursor for the last mile. It works. People signed up. Some of them are asking when they can pay.
And now something is off. A user sees another user's data. The login flow breaks on Safari. You asked the tool to add a feature and it quietly rewrote 3 others. You are not sure where the API keys live, and you have a bad feeling they live in the browser.
This is the wall, and in 2026 it is the most common reason a founder books a call with us. The good news is the prototype did its job. It proved someone wants the thing. The question now is what it costs to make the thing real, and the answer is $5,000 to $35,000 depending on which of 3 paths fits.
Where the prototype stops being enough
AI builders are very good at the part of a product you can see. They are much weaker at the part you cannot. The same 5 things break in these apps, in roughly this order.
Permissions. The database has no row-level rules, so any logged-in user can read any row. This is the one that gets you in the news.
Auth. Password reset is missing or broken, email verification was never turned on, there is no rate limit on login, and roles do not exist. Everyone is an admin.
Data model. Tables were created feature by feature. There are 3 tables that mean the same thing, nothing has a foreign key, and a report that should take 1 query takes 40.
Secrets. The OpenAI key, the Stripe key and the Supabase service key are in the frontend bundle, readable by anyone who opens developer tools.
Nothing is tested. Zero tests, so every change is a coin flip. This is why the tool broke 3 features when you asked for 1.



