# MenuGen Deployment Gap The MenuGen Deployment Gap names a recurring observation from [[Andrej Karpathy]]'s Sequoia AI Ascent 2026 talk: in the LLM era, *building* an application has become trivially fast, but *deploying* it has not. The bottleneck moved. Karpathy used his own MenuGen project as the case study. The actual app (input a photo of a menu, output rendered images of the dishes) was built in a weekend with [[Software 3.0]] glue. The remaining 90% of the time went to wiring Vercel hosting, authentication, payments, DNS, environment secrets, and production settings; classical [[Software 1.0]] friction with no AI lift in sight. ## Why the Gap Persists LLMs are excellent at the parts of software that are *legible to a model*: prose, code, schemas, prompts, glue. They are poor at the parts that require: - Authenticated multi-step interactions with proprietary admin UIs (Vercel, Stripe, Cloudflare, Auth0). - Browser flows that change weekly across providers. - Secrets management with appropriate audit trails. - Domain configuration with consequences a model cannot easily undo. - Subjective judgment about pricing, terms of service, legal compliance. These are exactly the surfaces that are NOT [[Agent-Native Product Decomposition|agent-native]] yet. Each provider exposes a glossy human UI and a thin, undocumented, or inconsistent API. ## Implications - **The bottleneck is the next frontier**: the win for whoever closes the gap (a deploy-native agent harness, an agent-friendly cloud, an MCP layer over admin consoles) is enormous. - **Founder leverage is now in deploy automation**, not in the application code itself. - **The MenuGen Deployment Gap is the proof point for [[Agent-Native Product Decomposition]]**: until SaaS providers expose sensors and actuators legible to LLMs, deployment friction caps the value of any LLM-built app. - **It is also a sharp counter to "vibe coding solves everything"**: building the app was vibey; shipping it was the same Software 1.0 slog. ## Karpathy's Implied Wish Karpathy explicitly says he wants to type "build MenuGen and ship it" and have an agent execute end-to-end without a human stitching admin consoles. This is the [[Agentic Engineering]] horizon for product founders. We are not there yet. ## Related - [[Andrej Karpathy]] - [[Agent-Native Product Decomposition]] - [[Agentic Engineering]] - [[Menugen Architecture Pattern]] - [[Markdown-based Installation (MD Scripts)]] - [[Software 1.0]] - [[Software 3.0]] - [[Vibe Coding]] - [[LLM Tool Calling]] - [[Model Context Protocol (MCP)]]