Four questions, one stack.
Interactive roadmap
Do you have paying users, or more than two people shipping to this codebase?
Until money or a second pair of hands is involved, the cheapest mistake is over-building. One person can hold the whole app in their head and let the agent rewrite freely. Once others depend on it, every change needs a contract the agent can check against.
Where are you?
Do you have paying users, or more than two people shipping to this codebase?
Why this matters
Until money or a second pair of hands is involved, the cheapest mistake is over-building. One person can hold the whole app in their head and let the agent rewrite freely. Once others depend on it, every change needs a contract the agent can check against.
Do you need multiple regions, a compliance audit, or six or more engineers working in parallel?
Why this matters
These three all force the same thing: explicit boundaries. Regions need data locality rules, audits need traceable change, and parallel teams need modules that do not step on each other. If none applies, a single well-typed app on managed services is still the fastest thing an agent can work in.
What are you building?
Will organic search be the main way people find this?
Why this matters
SEO changes the rendering model. Pages must be complete HTML at request time, fast, and cheap to generate in the thousands. Content-first frameworks make that the default, so the agent never has to fight hydration or caching to get a page indexed.
Do users sign in and pay for it?
Why this matters
Accounts, billing and per-user data are where most web apps grow their complexity. If the answer is yes, pick a full-stack framework with well-trodden auth and ORM patterns; the agent has seen those thousands of times. If not, you are building a tool and can skip most of that machinery.
Tier × profile.
| Tier | SEO-driven content & search | SaaS logged-in product | Tool utility & internal |
|---|---|---|---|
| 01 MVP Ship it | Astro + Tailwind + Cloudflare Pages 5/5 | Next.js + Drizzle + Supabase 5/5 | Vite + React + Hono on Cloudflare Workers 4/5 |
| 02 Growth Charge for it | Astro SSR + Postgres on Cloudflare 5/5 | Next.js + Prisma + Postgres 5/5 | SvelteKit + Drizzle + Postgres 4/5 |
| 03 Scale Run it for many | Next.js + Postgres + edge caching 4/5 | Next.js front, NestJS + Postgres + Redis back 4/5 | Go + Postgres + React 4/5 |