[{"data":1,"prerenderedAt":1498},["ShallowReactive",2],{"blog-vibe-coding-course-beyond-basics":3,"related-vibe-coding-course-beyond-basics":352},{"id":4,"title":5,"author":6,"body":7,"category":6,"date":337,"description":338,"draft":339,"extension":340,"image":6,"meta":341,"navigation":342,"path":343,"seo":344,"stem":345,"tags":346,"__hash__":351},"blog\u002Fblog\u002Fvibe-coding-course-beyond-basics.md","Vibe Coding Course: Beyond the Basics to Shipping Real Products",null,{"type":8,"value":9,"toc":318},"minimark",[10,14,19,30,33,36,40,49,52,55,59,62,75,78,82,85,113,127,131,134,143,152,155,159,168,175,178,182,185,212,215,219,222,255,258,262,265,268,272,275,278,282,285,289,292,296,299,308,312,315],[11,12,13],"p",{},"Search \"vibe coding course\" and you'll find dozens of results promising to teach you app development with AI. Most cover the same ground: prompt an agent, watch code appear, deploy something small. That's a fine start. But there's a gap between finishing a course project and shipping a SaaS product real people pay for — and that gap is exactly where the interesting work lives. This article covers what the courses teach, then keeps going into the parts they skip.",[15,16,18],"h2",{"id":17},"what-vibe-coding-actually-is-and-isnt","What Vibe Coding Actually Is (And Isn't)",[11,20,21,22,29],{},"Vibe coding, a term popularized by Andrej Karpathy in ",[23,24,28],"a",{"href":25,"rel":26},"https:\u002F\u002Fen.wikipedia.org\u002Fwiki\u002FVibe_coding",[27],"nofollow","early 2025",", means focusing on product intent while an AI agent handles implementation details. You describe what you want; the agent writes the code. You stay at the level of \"what should this do\" instead of \"which array method do I call.\"",[11,31,32],{},"It differs from traditional workflows in one big way: you're steering, not typing. The vibe part resonates because developers are tired of boilerplate — the tenth login form, the same Stripe checkout, the same email templates.",[11,34,35],{},"The misconception is that vibe coding means no technical understanding. It doesn't. You still need to know when the agent is wrong, when a \"working\" demo is quietly insecure, and when the vibe conflicts with reality. Vibe coding removes the typing, not the judgment.",[15,37,39],{"id":38},"the-real-problem-vibe-coding-solves","The Real Problem Vibe Coding Solves",[11,41,42,43,48],{},"Here's what courses rarely say out loud: choosing your stack is fast. Nuxt or Next, Supabase or raw Postgres, Stripe or Paddle — you settle that in an afternoon. The ",[23,44,47],{"href":45,"rel":46},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fhow-to-ship-saas-fast",[27],"framework is not what slows you down",".",[11,50,51],{},"What slows you down is the plumbing between the pieces. Webhooks, row-level security, subscription state, transactional email, consent flows. None of it is clever. None of it teaches you anything you'll brag about. And it eats weeks.",[11,53,54],{},"Courses teach the concept — \"here's how to call an AI to write code\" — but skip the integration layer entirely. That's the gap between \"write code with AI\" and \"ship a SaaS product.\"",[15,56,58],{"id":57},"from-vibe-coding-concept-to-actual-shipped-code","From Vibe Coding Concept to Actual Shipped Code",[11,60,61],{},"Chat completions are not the same as structural changes to a real codebase. A helpful chat response gives you a snippet; a coding agent applies changes across files, respects your conventions, and doesn't break the three features you already shipped.",[11,63,64,65,69,70,74],{},"The way to make that safe is ",[66,67,68],"strong",{},"deterministic patches"," — repeatable code changes that produce the same result every time, not a fresh improvisation on each run. Combined with a contract file (an ",[71,72,73],"code",{},"AGENTS.md"," documenting the one accepted way to do data access and secrets), agents stay consistent instead of inventing a fourth pattern.",[11,76,77],{},"The rule of thumb: let AI write code freely for isolated, greenfield work; enforce conventions the moment code touches shared infrastructure like auth or billing.",[15,79,81],{"id":80},"building-saas-with-vibe-coding-the-integration-reality","Building SaaS with Vibe Coding: The Integration Reality",[11,83,84],{},"This is where the real work concentrates. Each service demands something specific:",[86,87,88,95,101,107],"ul",{},[89,90,91,94],"li",{},[66,92,93],{},"Stripe webhooks",": idempotency matters more than speed. A webhook that fires twice must not charge or refund twice. Signature verification is non-negotiable.",[89,96,97,100],{},[66,98,99],{},"Supabase RLS",": let the database enforce your security model at query time, so a bug in your app code can't leak another user's rows.",[89,102,103,106],{},[66,104,105],{},"Google sign-in",": the one auth flow that usually just works — lean on it.",[89,108,109,112],{},[66,110,111],{},"Resend for transactional email",": keep delivery logic separate from app logic, so a slow email provider never blocks a purchase.",[11,114,115,116,120,121,126],{},"The point is these tools work well ",[117,118,119],"em",{},"together",", not just individually. Wiring them is ",[23,122,125],{"href":123,"rel":124},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fnuxt-supabase-stripe-saas-boilerplate",[27],"the part that actually takes weeks",", and no course project forces you to confront it.",[15,128,130],{"id":129},"billing-edge-cases-no-course-mentions","Billing Edge Cases No Course Mentions",[11,132,133],{},"Real billing is a swamp of edge cases.",[11,135,136,137,142],{},"EU consent laws are a classic. Selling a digital product to German customers may require an explicit ",[23,138,141],{"href":139,"rel":140},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fstripe-checkout-consent-collection-german-withdrawal-waiver",[27],"withdrawal-waiver checkbox"," encoded into the pay button itself. No tutorial mentions this until it bites you.",[11,144,145,146,151],{},"Subscription state should live in your Stripe webhooks, not on a client-side success page. The ",[23,147,150],{"href":148,"rel":149},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fstripe-webhooks-source-of-truth",[27],"success page can lie"," — the user closed the tab, the network dropped, the payment is still pending. Treat the webhook as the source of truth.",[11,153,154],{},"And multi-plan subscriptions stay sane only if you handle upgrades, downgrades, and failed webhook retries without duplicating charges. Idempotency, again, is the whole game.",[15,156,158],{"id":157},"ai-agent-consistency-the-missing-piece","AI Agent Consistency: The Missing Piece",[11,160,161,162,167],{},"Agents drift. Give one a codebase with three ways to fetch data and it ",[23,163,166],{"href":164,"rel":165},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fconventions-for-ai-coding-agents",[27],"cheerfully adds a fourth"," — not because it's dumb, but because it has no reason to prefer your pattern over the thousands it has seen.",[11,169,170,171,174],{},"The fix is writing conventions ",[117,172,173],{},"for the agent",", not the next hire. A human can hold a contradiction in their head and pick the right pattern by smell. An agent cannot smell anything.",[11,176,177],{},"Practically: document one blessed way to do each thing, test agent output before it reaches production, and treat inconsistent patches as technical debt. The cost of skipping this is merge hell and upgrade nightmares six months later.",[15,179,181],{"id":180},"practical-vibe-coding-workflow-for-teams","Practical Vibe Coding Workflow for Teams",[11,183,184],{},"A workflow that scales looks like this:",[186,187,188,194,200,206],"ol",{},[89,189,190,193],{},[66,191,192],{},"Interview-driven setup",": the agent asks questions — app name, languages, theme, billing model — then provisions services and reshapes the codebase to match.",[89,195,196,199],{},[66,197,198],{},"Semantic versioning with agent-readable release notes",", so updates are legible to both humans and agents.",[89,201,202,205],{},[66,203,204],{},"Opt-in updates to customized code",", so you're never forced into a merge you didn't ask for.",[89,207,208,211],{},[66,209,210],{},"Delivery as a product mechanic"," — GitHub invites, instant provisioning, no manual handoff.",[11,213,214],{},"This is roughly how BoiledPlate operates: buy once, the agent runs the setup interview, and you get instant delivery via GitHub with lifetime updates.",[15,216,218],{"id":217},"technical-debugging-stories-from-real-projects","Technical Debugging Stories From Real Projects",[11,220,221],{},"Real projects break in ways demos never do. A few that are worth studying:",[86,223,224,233,244],{},[89,225,226,227,232],{},"A page that returned ",[23,228,231],{"href":229,"rel":230},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fthe-page-that-returned-200-on-the-server-and-500-in-the-browser-a-json-ld-tempor",[27],"200 from curl but 500 in Chrome"," — a JSON-LD hydration bug hiding in source order during SSR.",[89,234,235,236,48],{},"A blog that quietly told Google its ",[23,237,240,241],{"href":238,"rel":239},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Four-blog-canonically-pointed-at-localhost",[27],"canonical URL was ",[71,242,243],{},"localhost:3000",[89,245,246,247,48],{},"Peer dependency conflicts when an ",[23,248,251,252],{"href":249,"rel":250},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fvercel-web-analytics-nuxt-4-analytics-package-breaks-typecheck",[27],"analytics package broke ",[71,253,254],{},"nuxt typecheck",[11,256,257],{},"The lesson: structure error logs so agents can debug themselves. Clear, specific errors are what let an agent fix its own output instead of guessing.",[15,259,261],{"id":260},"languages-seo-and-scaling-beyond-mvp","Languages, SEO, and Scaling Beyond MVP",[11,263,264],{},"Some things break horribly if you retrofit them. i18n is the worst offender — bolt it on after launch and you rewrite half your components. Do it from day one.",[11,266,267],{},"SEO is cheaper than people think: JSON-LD structured data and prerendered Markdown give you search visibility without ongoing effort. A blog whose content survives agent rewrites needs stable structure. And TypeScript strict mode is a vibe coding discipline — it catches the agent's mistakes at compile time, before they ship.",[15,269,271],{"id":270},"the-anti-plumbing-stack-why-these-specific-tools","The Anti-Plumbing Stack: Why These Specific Tools",[11,273,274],{},"Nuxt is the glue. Supabase gives you auth fast and RLS if you remember to configure it. Stripe gives you billing but demands the webhook be treated as the real product surface.",[11,276,277],{},"REST webhooks still beat GraphQL subscriptions for billing because billing needs reliable, replayable, signed delivery — not live streams. Managed services trade some control for speed, which is usually the right call for a team shipping fast. And dashboard theming — pick a preset or describe your own colors and let the agent map them onto the codebase — is a small, safe example of agent-driven customization done right.",[15,279,281],{"id":280},"rapid-iteration-at-scale","Rapid Iteration at Scale",[11,283,284],{},"The payoff of doing all this well: agents reshape your codebase without breaking existing features. Idempotent operations become a general design principle, not just a webhook trick — any operation should be safe to run twice. Good testing patterns let you ship agent-generated code with confidence, moving faster than manual review alone would allow.",[15,286,288],{"id":287},"when-vibe-coding-fails-and-what-to-do-instead","When Vibe Coding Fails (And What To Do Instead)",[11,290,291],{},"Be honest about limits. Complex business logic that needs human judgment, regulatory compliance that can't be templated, and systems where the \"vibe\" conflicts with hard constraints — these need determinism, not flexibility. Recognizing that boundary is a senior skill. When you hit it, slow down and write the code deliberately.",[15,293,295],{"id":294},"building-your-own-stack-vs-using-a-starter","Building Your Own Stack vs. Using a Starter",[11,297,298],{},"The DIY path — wiring Nuxt, Supabase, Stripe, and Resend yourself — teaches you everything and costs you weeks. A starter kit saves those weeks but locks in some choices.",[11,300,301,302,307],{},"The maintenance math matters too: updates, security patches, and dependency hell never stop. A ",[23,303,306],{"href":304,"rel":305},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Ffree-nuxt-supabase-saas-boilerplate",[27],"free MIT-licensed starter"," lets you clone and wire manually; a paid one hands you the provisioning and lifetime updates. Pick based on whether your time or your flexibility is scarcer.",[15,309,311],{"id":310},"tools-beyond-the-courses","Tools Beyond the Courses",[11,313,314],{},"The ecosystem is broader than any single course covers. Cursor, Copilot, and Claude each fit different workflows — inline completion versus agentic multi-file edits. Replit and similar platforms matter for their integration points. And there's real skill in knowing when to run multiple agents in sequence versus feeding one long context.",[11,316,317],{},"The courses teach you to start. Shipping production SaaS to real users is a different discipline — one built less on prompting and more on the plumbing, conventions, and edge cases above. That's the part worth mastering.",{"title":319,"searchDepth":320,"depth":320,"links":321},"",3,[322,324,325,326,327,328,329,330,331,332,333,334,335,336],{"id":17,"depth":323,"text":18},2,{"id":38,"depth":323,"text":39},{"id":57,"depth":323,"text":58},{"id":80,"depth":323,"text":81},{"id":129,"depth":323,"text":130},{"id":157,"depth":323,"text":158},{"id":180,"depth":323,"text":181},{"id":217,"depth":323,"text":218},{"id":260,"depth":323,"text":261},{"id":270,"depth":323,"text":271},{"id":280,"depth":323,"text":281},{"id":287,"depth":323,"text":288},{"id":294,"depth":323,"text":295},{"id":310,"depth":323,"text":311},"2026-07-14","Learn what vibe coding courses skip. Discover how AI-assisted development works, its real limitations, and what it takes to ship production apps.",false,"md",{},true,"\u002Fblog\u002Fvibe-coding-course-beyond-basics",{"title":5,"description":338},"blog\u002Fvibe-coding-course-beyond-basics",[347,348,349,350],"vibe coding","AI development","app development","AI coding tools","D7BU2c4tnE9L1BjaZi35kGn98u05yUTDdXEp5LpHo_s",[353,851,1158],{"id":354,"title":355,"author":6,"body":356,"category":6,"date":840,"description":841,"draft":339,"extension":340,"image":6,"meta":842,"navigation":342,"path":843,"seo":844,"stem":845,"tags":846,"__hash__":850},"blog\u002Fblog\u002Fvibecoding-apps-promise-vs-reality.md","Vibecoding Apps: The Promise vs. Production Reality",{"type":8,"value":357,"toc":822},[358,366,369,373,376,379,399,402,406,409,412,424,428,431,457,460,465,525,529,532,570,573,577,580,587,598,602,605,613,616,642,645,649,660,663,667,670,703,706,710,713,733,736,740,772,776,785,789,792,796,803,807,813],[11,359,360,361,365],{},"Vibe coding has a clean pitch: describe your app in plain language, and an AI writes the code. The term went mainstream after Andrej Karpathy ",[23,362,364],{"href":25,"rel":363},[27],"described it"," as \"fully giving in to the vibes\" and forgetting the code even exists. For prototypes, it genuinely works. For production SaaS with real billing and real users, the gap between \"it runs\" and \"it ships\" is where most vibecoding apps quietly stall.",[11,367,368],{},"This is an honest map of what vibe coding actually does, where the tools break, and how agent-guided building differs from one-shot generation.",[15,370,372],{"id":371},"what-vibe-coding-actually-is","What Vibe Coding Actually Is",[11,374,375],{},"Vibe coding is AI-assisted development where natural language drives code generation instead of traditional syntax. You describe intent; a model produces implementation.",[11,377,378],{},"But \"vibe coding\" is a spectrum, not one thing:",[86,380,381,387],{},[89,382,383,386],{},[66,384,385],{},"Pure description"," (Google AI Studio, Lovable): you type a goal, you get output.",[89,388,389,392,393,398],{},[66,390,391],{},"Agent-guided structured building"," (Cursor with conventions, ",[23,394,397],{"href":395,"rel":396},"https:\u002F\u002Fboiledplate.ai",[27],"BoiledPlate","): an agent interviews you, then applies structured changes to a known codebase shape.",[11,400,401],{},"Both use natural language. Only one keeps producing coherent code past the first afternoon.",[15,403,405],{"id":404},"the-promise-vs-the-reality-gap","The Promise vs. the Reality Gap",[11,407,408],{},"Marketing says: describe your app, get a working product. What actually happens is: description → generated code → integration hell.",[11,410,411],{},"The generated code is usually the easy 10%. The other 90% is plumbing — the wiring between services that no demo ever shows. Stripe webhooks that agree with your database. Row-level security policies. Refund state. EU consent flows. i18n strings that have to land in five places before the build stops complaining.",[11,413,414,415,418,419,423],{},"Vibe coding fails silently here because a one-shot generator can produce a Stripe checkout button that ",[117,416,417],{},"looks"," done and has no working webhook behind it. It compiles. It even redirects. It just doesn't record the payment when the user closes the tab. As we've argued before, ",[23,420,422],{"href":45,"rel":421},[27],"the stack is easy and the plumbing is the project"," — and plumbing is exactly what one-shot tools skip.",[15,425,427],{"id":426},"vibe-coding-tools-an-honest-taxonomy","Vibe Coding Tools: An Honest Taxonomy",[11,429,430],{},"Four broad categories, each solving a different slice:",[86,432,433,439,445,451],{},[89,434,435,438],{},[66,436,437],{},"No-code visual builders"," (FlutterFlow, Canva Code): UI-first, limited backend logic. Fine for MVPs, high lock-in.",[89,440,441,444],{},[66,442,443],{},"Pure language-to-code"," (Google AI Studio, Lovable): fast initial output, weak at multi-service integration.",[89,446,447,450],{},[66,448,449],{},"Agent-guided structured builders"," (BoiledPlate, Cursor + strong conventions): interviews shape the infrastructure, deterministic patches keep the codebase coherent.",[89,452,453,456],{},[66,454,455],{},"Full-stack IDE environments"," (Replit, Bolt.new, Base44): sandboxed and impressive, but you still wire the real services yourself.",[11,458,459],{},"None of these is strictly better. They're built for different points in the lifecycle. The mistake is using an exploration tool for a production launch.",[461,462,464],"h3",{"id":463},"what-each-actually-solves","What each actually solves",[466,467,468,481],"table",{},[469,470,471],"thead",{},[472,473,474,478],"tr",{},[475,476,477],"th",{},"Need",[475,479,480],{},"Who handles it well",[482,483,484,493,501,509,517],"tbody",{},[472,485,486,490],{},[487,488,489],"td",{},"Rapid prototyping",[487,491,492],{},"All of them, inconsistently",[472,494,495,498],{},[487,496,497],{},"Production auth with RLS",[487,499,500],{},"Only tools with deterministic secrets + database-level permissions",[472,502,503,506],{},[487,504,505],{},"Real billing (idempotent webhooks)",[487,507,508],{},"Almost none in one-shot mode",[472,510,511,514],{},[487,512,513],{},"Multi-language i18n",[487,515,516],{},"Almost none automatically",[472,518,519,522],{},[487,520,521],{},"SEO (JSON-LD, canonicals, prerendering)",[487,523,524],{},"Only purpose-built frameworks",[15,526,528],{"id":527},"the-workflow-where-the-time-actually-goes","The Workflow: Where the Time Actually Goes",[11,530,531],{},"People imagine vibecoding apps is 90% prompting. In practice, for anything real:",[86,533,534,540,546,552,558,564],{},[89,535,536,539],{},[66,537,538],{},"Prompt clarity and iteration"," — 5–15% of time, but decisive.",[89,541,542,545],{},[66,543,544],{},"Reviewing generated code quality"," — 20–30%.",[89,547,548,551],{},[66,549,550],{},"Service provisioning"," (Stripe, Supabase, Google OAuth) — manual in most tools.",[89,553,554,557],{},[66,555,556],{},"Webhook architecture and idempotency"," — 30–40%. This is the real work.",[89,559,560,563],{},[66,561,562],{},"Edge cases"," — refunds, subscription transitions, EU withdrawal periods.",[89,565,566,569],{},[66,567,568],{},"Deployment and monitoring"," — always an afterthought.",[11,571,572],{},"The prompt is the smallest slice. The webhook is the biggest. That ratio is why \"describe your app\" undersells the job.",[15,574,576],{"id":575},"ai-agents-vs-vibe-coding-tools","AI Agents vs. Vibe Coding Tools",[11,578,579],{},"The core difference is memory and structure.",[11,581,582,583,586],{},"A vibe coding tool does one-shot generation with a limited context window and no persistent conventions. An agent working against a starter kit does iterative interviews, applies deterministic patches, and reads a contract that tells it how ",[117,584,585],{},"this"," codebase does things.",[11,588,589,590,594,595,597],{},"That contract matters more than it sounds. As we've written, ",[23,591,593],{"href":164,"rel":592},[27],"an agent cannot smell a codebase"," — give it three ways to fetch data and it cheerfully adds a fourth, because it has no reason to prefer yours. Without written conventions, every suggestion drifts a little further from the shape of your code. BoiledPlate ships an ",[71,596,73],{}," contract precisely so the agent reads one documented way to do data access and secrets, then respects your customizations instead of reinventing them.",[15,599,601],{"id":600},"the-billing-problem-nobody-solves","The Billing Problem Nobody Solves",[11,603,604],{},"This is where vibecoding apps break most predictably.",[11,606,607,608,612],{},"Client-side success pages lie. The user pays, the browser redirects, and then they close the tab before your success page finishes running. If your billing state depends on that page, you just lost a payment record. The only reliable source of truth is the Stripe webhook — ",[23,609,611],{"href":148,"rel":610},[27],"your checkout success page should not touch your billing state"," at all.",[11,614,615],{},"Doing this right requires:",[86,617,618,630,636],{},[89,619,620,623,624,629],{},[66,621,622],{},"Idempotent webhooks"," so a redelivered event doesn't double-charge or double-provision. Stripe ",[23,625,628],{"href":626,"rel":627},"https:\u002F\u002Fdocs.stripe.com\u002Fwebhooks#handle-duplicate-events",[27],"explicitly recommends"," handling duplicate events.",[89,631,632,635],{},[66,633,634],{},"Refund and downgrade state machines"," — partial refunds, subscription changes, EU withdrawal windows.",[89,637,638,641],{},[66,639,640],{},"Stripe as the single source of truth",", with everything else a view of Stripe state.",[11,643,644],{},"Almost no one-shot tool encodes this. It requires ongoing architecture, not a single generation.",[15,646,648],{"id":647},"auth-and-security-where-it-breaks-quietly","Auth and Security: Where It Breaks Quietly",[11,650,651,652,655,656,659],{},"Row-level security is invisible in generated code and critical in production. A generator can wire Google sign-in flawlessly and still leave your database wide open, because sign-in only proves ",[117,653,654],{},"who"," the user is — RLS decides ",[117,657,658],{},"what rows"," they can touch.",[11,661,662],{},"Supabase RLS policies are auto-generated wrong more often than right. This is the classic \"a user saw someone else's data\" bug, and it never shows up in a demo because demos have one user. Agent-driven builders solve this by encoding RLS templates as part of the starter, not leaving each policy to a fresh guess.",[15,664,666],{"id":665},"real-world-bugs-in-generated-code","Real-World Bugs in Generated Code",[11,668,669],{},"Generated code fails in specific, repeatable ways:",[86,671,672,683,691,697],{},[89,673,674,677,678,682],{},[66,675,676],{},"JSON-LD hydration crashes"," in Nuxt SSR — a page that returns ",[23,679,681],{"href":229,"rel":680},[27],"200 from curl and 500 in the browser"," because of source order. A generator won't catch this; it's an integration bug, not a syntax bug.",[89,684,685,688,689,48],{},[66,686,687],{},"Canonical URL edge cases"," — trailing slashes, query params, and the memorable case of a blog telling Google its canonical URL was ",[71,690,243],{},[89,692,693,696],{},[66,694,695],{},"TypeScript strict mode"," — most generators skip it and hand you union-type nightmares.",[89,698,699,702],{},[66,700,701],{},"Peer dependency conflicts"," — Stripe SDK versions, Supabase auth breaking changes.",[11,704,705],{},"None of these are clever problems. They're endless, slightly different, and exactly the kind of thing that eats a launch weekend.",[15,707,709],{"id":708},"the-cost-equation","The Cost Equation",[11,711,712],{},"Realistic numbers matter more than hype:",[86,714,715,721,727],{},[89,716,717,720],{},[66,718,719],{},"Time to working prototype",": a couple of hours in Lovable; roughly an hour with a structured starter if the interview is clear.",[89,722,723,726],{},[66,724,725],{},"Time to production-ready",": add 2–4 weeks of plumbing regardless of tool.",[89,728,729,732],{},[66,730,731],{},"Cost of lock-in",": high with FlutterFlow and Canva Code, medium with Replit and Bolt, low with GitHub-native delivery where the code lives next to your CI\u002FCD.",[11,734,735],{},"The prototype gap between tools is small. The production gap is enormous, and it's decided by architecture, not by prompt quality.",[15,737,739],{"id":738},"choosing-a-tool-a-quick-matrix","Choosing a Tool: A Quick Matrix",[86,741,742,748,754,760,766],{},[89,743,744,747],{},[66,745,746],{},"MVP under a week",": Google AI Studio, Lovable, Canva Code.",[89,749,750,753],{},[66,751,752],{},"Production SaaS with billing",": an agent plus a strong starter kit, or manual work with agent oversight.",[89,755,756,759],{},[66,757,758],{},"Mobile-first",": FlutterFlow.",[89,761,762,765],{},[66,763,764],{},"Maximum flexibility",": Replit, Bolt.new — sandboxed, but you wire everything.",[89,767,768,771],{},[66,769,770],{},"Zero lock-in",": GitHub + Claude agent + a Nuxt\u002FSupabase\u002FStripe starter.",[15,773,775],{"id":774},"why-nuxt-supabase-stripe-works-for-agents","Why Nuxt + Supabase + Stripe Works for Agents",[11,777,778,779,784],{},"This combination isn't fashion; it's about predictable integration points. Nuxt's universal rendering forces deterministic patterns an agent can read and extend. Supabase RLS policies are template-able. Stripe webhooks give one unambiguous source of truth. Every SaaS starter ships this stack — but as we've noted, ",[23,780,783],{"href":781,"rel":782},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fnuxt-saas-boilerplate-for-ai-agents",[27],"that was never the hard part",". The parts are cheap; bolting them together is the project.",[15,786,788],{"id":787},"what-vibe-coding-wont-do-yet","What Vibe Coding Won't Do Yet",[11,790,791],{},"Be honest about the ceiling. Generated schemas are brittle, so migrations are risky. Updating generated code tends to break old queries. Vibe-coded apps are hard to inherit because no one wrote down the conventions, which means no one owns the plumbing. And AI-generated code against regulatory requirements is still a gray area.",[15,793,795],{"id":794},"where-vibe-coding-genuinely-shines","Where Vibe Coding Genuinely Shines",[11,797,798,799,802],{},"None of this means vibe coding is a fad. It is genuinely faster for exploration, for the prototype-to-feedback loop, and for grinding down repetitive boilerplate. The best use of an agent isn't \"build me a startup\" — it's \"given this codebase shape, what's the right next step?\" That question only has a good answer when the codebase ",[117,800,801],{},"has"," a documented shape.",[15,804,806],{"id":805},"conclusion-a-layer-not-a-replacement","Conclusion: A Layer, Not a Replacement",[11,808,809,810,812],{},"The real speedup in vibecoding apps isn't the initial generation — it's structured integration. The framework was never what slowed you down; the plumbing was. Use vibe coding tools for exploration, and use agent-guided starter kits for production, where deterministic patches and an ",[71,811,73],{}," contract keep output coherent past month three.",[11,814,815,816,821],{},"That's the model BoiledPlate is built around: an agent that interviews you, provisions Stripe, Supabase, and Google sign-in, and then respects your customizations instead of drifting away from them. You can read ",[23,817,820],{"href":818,"rel":819},"https:\u002F\u002Fboiledplate.ai\u002Fblog",[27],"more of the engineering log on the blog"," — every edge case it took to make the plumbing trustworthy is written down, because that's the part vibe coding still can't hand you for free.",{"title":319,"searchDepth":320,"depth":320,"links":823},[824,825,826,829,830,831,832,833,834,835,836,837,838,839],{"id":371,"depth":323,"text":372},{"id":404,"depth":323,"text":405},{"id":426,"depth":323,"text":427,"children":827},[828],{"id":463,"depth":320,"text":464},{"id":527,"depth":323,"text":528},{"id":575,"depth":323,"text":576},{"id":600,"depth":323,"text":601},{"id":647,"depth":323,"text":648},{"id":665,"depth":323,"text":666},{"id":708,"depth":323,"text":709},{"id":738,"depth":323,"text":739},{"id":774,"depth":323,"text":775},{"id":787,"depth":323,"text":788},{"id":794,"depth":323,"text":795},{"id":805,"depth":323,"text":806},"2026-07-19","Explore how vibecoding apps work, where they break down, and the gap between prototypes and production SaaS that actually ships with real users.",{},"\u002Fblog\u002Fvibecoding-apps-promise-vs-reality",{"title":355,"description":841},"blog\u002Fvibecoding-apps-promise-vs-reality",[847,348,848,849],"vibecoding","code generation","SaaS development","6xVs1JNK5DqaC2I5I7p7VIrAUYF6PkCHDYjGNHtBzOs",{"id":852,"title":853,"author":6,"body":854,"category":6,"date":1146,"description":1147,"draft":339,"extension":340,"image":6,"meta":1148,"navigation":342,"path":1149,"seo":1150,"stem":1151,"tags":1152,"__hash__":1157},"blog\u002Fblog\u002Fvibe-coding-gemini-production.md","Vibe Coding with Gemini: From Demo to Production Reality",{"type":8,"value":855,"toc":1130},[856,859,863,866,869,873,876,879,882,886,889,892,906,914,918,921,928,931,939,943,946,954,960,964,972,985,997,1001,1004,1015,1019,1027,1049,1053,1061,1065,1068,1072,1075,1087,1093,1096,1100,1108,1112,1118,1122],[11,857,858],{},"Vibe coding is having a moment. Type a sentence, get an app. Google's pitch with Gemini in AI Studio is that anyone can describe a \"vibe\" and watch a working React app appear, then ship it to Cloud Run in minutes. It's genuinely impressive. It's also where most of the honest conversation stops. Because the distance between \"it runs on my screen\" and \"it survives paying customers\" is exactly the distance this article is about.",[15,860,862],{"id":861},"what-vibe-coding-actually-means","What \"Vibe Coding\" Actually Means",[11,864,865],{},"Vibe coding means turning natural-language prompts into functional code — not sketches, not pseudocode, but something that compiles and deploys. You describe the goal (\"a neon-themed pomodoro timer for my kid\") and Gemini writes it. People have built personalized apps in under 30 minutes this way, and the demos are real.",[11,867,868],{},"The gap is between \"describe your vibe\" and \"ships to production.\" Gemini positions this as democratized development: anyone can code now. What that actually requires, once you leave the single-file demo, is everything vibe coding quietly skips — billing state, data isolation, webhook retries, compliance. The framework was never the hard part.",[15,870,872],{"id":871},"gemini-vs-claude-the-agent-architecture-choice","Gemini vs. Claude: The Agent Architecture Choice",[11,874,875],{},"The two dominant coding-agent styles behave very differently, and it matters more than benchmarks suggest.",[11,877,878],{},"Gemini sprints. As one developer put it comparing it to Claude Code, \"Gemini doesn't make a plan and ask you if you want to proceed. It sprints ahead.\" That's fast and satisfying for a prototype. Gemini 2.5 Flash is faster still than Gemini 3 Pro, but developers who ran the same project through both found Flash more manual and more error-prone — speed traded against correctness.",[11,880,881],{},"Claude's agentic workflow leans the other way: plan first, then execute deliberate, repeatable changes. For a throwaway timer, planning is overhead. For a multi-tenant SaaS with billing, planning is the whole game. Consistency beats velocity the moment your codebase outlives the first session.",[15,883,885],{"id":884},"the-real-cost-of-fast-single-file-apps-vs-plumbing","The Real Cost of \"Fast\": Single-File Apps vs. Plumbing",[11,887,888],{},"A neon React timer in half an hour is a fair benchmark for what vibe coding covers well: UI components, basic logic, deployment scaffolding.",[11,890,891],{},"Here's what it doesn't touch:",[86,893,894,897,900,903],{},[89,895,896],{},"Signature-verified, idempotent Stripe webhooks",[89,898,899],{},"Row-level security so users can't read each other's rows",[89,901,902],{},"Refund flows that don't double-cancel on a retry",[89,904,905],{},"EU consent compliance baked into the pay button",[11,907,908,909,913],{},"None of that is clever work. It's endless, slightly-different-every-time work — the kind we call ",[23,910,912],{"href":45,"rel":911},[27],"plumbing",". And it's where launches actually stall. Vibe coding a UI is a solved problem. Wiring the services beneath it is the project.",[15,915,917],{"id":916},"building-real-apps-where-google-ai-studio-hits-a-wall","Building Real Apps: Where Google AI Studio Hits a Wall",[11,919,920],{},"Google AI Studio's newer vibe-coding experience can add databases and even multiplayer. That's progress, but \"add a database\" is where the real work starts, not where it ends.",[11,922,923,924,927],{},"Multiplayer requires state synchronization and, critically, ",[66,925,926],{},"row-level security"," so one user's writes never leak into another's session. A database alone gives you none of that — you still need a migration strategy, schema validation, and a policy layer enforced at query time.",[11,929,930],{},"Billing is worse. Provisioning Stripe products, verifying webhook signatures, and making handlers idempotent is not something a prompt reliably produces. And auth? Adding Google sign-in is trivial. Managing the user session, the RLS policies tied to it, and the secrets that must never reach the client is not.",[11,932,933,934,938],{},"This is exactly the box-of-parts problem we've written about before: ",[23,935,937],{"href":781,"rel":936},[27],"every boilerplate ships the stack",", then leaves you alone in a room with the wiring.",[15,940,942],{"id":941},"the-vibe-coding-workflow-that-actually-works-for-saas","The Vibe Coding Workflow That Actually Works for SaaS",[11,944,945],{},"The missing step in the \"describe it and deploy\" pitch is the interview.",[11,947,948,949,953],{},"Before an agent should touch a SaaS codebase, it needs answers: What's the billing model — one-time or subscription, how many plans? What user roles exist? What data must be isolated per tenant? BoiledPlate's setup runs exactly this way — ",[23,950,952],{"href":395,"rel":951},[27],"your coding agent interviews you",", then provisions Stripe, Supabase, and Google sign-in based on your answers.",[11,955,956,957,959],{},"Those answers drive ",[66,958,68],{},": automated, repeatable code changes that reshape the starter to your specific setup rather than hallucinating a fresh architecture each run. And validation matters — \"the code compiles\" is not \"the billing survives production.\" Those are two entirely different claims.",[15,961,963],{"id":962},"webhook-architecture-the-plumbing-nobody-teaches","Webhook Architecture: The Plumbing Nobody Teaches",[11,965,966,967,971],{},"Here is the single lesson most vibe-coded billing systems get wrong: your checkout success page is not your source of truth. ",[23,968,970],{"href":148,"rel":969},[27],"Stripe webhooks are",". The user can close the tab, lose signal, or refresh — the webhook is what tells you money moved.",[11,973,974,975,978,979,984],{},"That means handlers must be ",[66,976,977],{},"idempotent",". Stripe retries deliveries. If your handler grants access or cancels a subscription twice because it got called twice, you have a bug that only shows up under load. We've written in detail about ",[23,980,983],{"href":981,"rel":982},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fthe-github-invite-is-the-product-building-a-stripe-webhook-where-delivery-throws",[27],"a webhook where some failures must throw and some must never do"," — the distinction is the difference between a self-healing system and a support ticket.",[11,986,987,988,992,993,996],{},"Compliance lives here too. Encoding a ",[23,989,991],{"href":139,"rel":990},[27],"German withdrawal-right waiver into the pay button"," via Stripe's ",[71,994,995],{},"consent_collection"," is not something a vibe prompt knows to do. It's compliance as code, and it's mandatory in the EU.",[15,998,1000],{"id":999},"agent-consistency-writing-conventions-that-survive-updates","Agent Consistency: Writing Conventions That Survive Updates",[11,1002,1003],{},"An agent cannot smell a codebase. Give it three ways to fetch data and it adds a fourth — not because it's dumb, but because it has no reason to prefer yours. This is the failure mode behind \"anyone can code\": the agent drifts, and by month three you have five patterns for one job.",[11,1005,1006,1007,1009,1010,1014],{},"The fix is a contract. An ",[71,1008,73],{}," file documents one way to access data, handle secrets, and apply patches, so ",[23,1011,1013],{"href":164,"rel":1012},[27],"agent output stays consistent"," past the first session. Gemini's sprint-ahead style has no equivalent plan-and-confirm gate, which is fine for a demo and dangerous for a codebase you'll maintain for a year.",[15,1016,1018],{"id":1017},"vibe-coding-languages-frameworks-and-real-bugs","Vibe Coding Languages, Frameworks, and Real Bugs",[11,1020,1021,1022,1026],{},"Most vibe coding assumes one language — JavaScript or TypeScript — and one happy path. Production is messier. A serious SaaS often needs ",[23,1023,1025],{"href":395,"rel":1024},[27],"four languages from day one"," via i18n, where a single new locale string has to land in five places before the build stops complaining.",[11,1028,1029,1030,1034,1035,1039,1040,1043,1044,1048],{},"Real debugging stories make the point. We shipped a page that ",[23,1031,1033],{"href":229,"rel":1032},[27],"returned 200 from curl and 500 in Chrome"," — a JSON-LD hydration bug hiding in source order. Our blog once ",[23,1036,1038],{"href":238,"rel":1037},[27],"told Google its canonical URL was localhost:3000",". A ",[71,1041,1042],{},"@vercel\u002Fanalytics"," install ",[23,1045,1047],{"href":249,"rel":1046},[27],"broke Nuxt typecheck"," through a peer-dependency conflict. None of these appear in a vibe-coding demo. All of them appear in a real project.",[15,1050,1052],{"id":1051},"typed-end-to-end-why-vibe-coding-needs-typescript-discipline","Typed End to End: Why Vibe Coding Needs TypeScript Discipline",[11,1054,1055,1056,1060],{},"Natural-language-to-code loves shortcuts, and the first shortcut is usually type safety. That's a false economy. TypeScript in ",[23,1057,1059],{"href":395,"rel":1058},[27],"strict mode"," catches bugs at compile time instead of in a customer's checkout. Pair it with Zod validation and a database schema treated as a single source of truth, and refactors stop being terrifying. Vibe code without types and you're signing up for refactoring hell the first time requirements change.",[15,1062,1064],{"id":1063},"deployment-speed-is-not-shipping-speed","Deployment Speed Is Not Shipping Speed",[11,1066,1067],{},"\"Deploy to Cloud Run in minutes\" is a genuine feature. But fast-to-first-deploy and safe-in-production pull in opposite directions. A template you clone hands you parts. A kit that adapts to your interview answers hands you a wired product — and, in BoiledPlate's case, delivers it through a GitHub invite with lifetime updates. The delivery mechanism is instant; the value is that the plumbing already agrees with itself.",[15,1069,1071],{"id":1070},"when-vibe-coding-makes-sense-and-when-it-doesnt","When Vibe Coding Makes Sense (And When It Doesn't)",[11,1073,1074],{},"Be honest about fit.",[11,1076,1077,1080,1081,1086],{},[66,1078,1079],{},"Reach for Gemini AI Studio"," for prototypes, internal tools, learning projects, and quick wins. It genuinely shines here, and Google's own ",[23,1082,1085],{"href":1083,"rel":1084},"https:\u002F\u002Fai.google.dev\u002F",[27],"vibe-coding documentation"," is a good starting point.",[11,1088,1089,1092],{},[66,1090,1091],{},"Reach for agent-driven plumbing"," the moment you have billing-critical, multi-tenant, or compliance-heavy requirements. The checklist is simple: does your app need webhooks, RLS, or signature verification? If yes, you've left vibe-coding territory.",[11,1094,1095],{},"The pragmatic middle is a hybrid — vibe code the UI, then apply deterministic patches to the dangerous parts.",[15,1097,1099],{"id":1098},"the-one-time-cost-vs-subscription-trap","The One-Time Cost vs. Subscription Trap",[11,1101,1102,1103,1107],{},"\"Free and fast\" often means \"expensive to maintain.\" Free vibe-coding access still leaves you owning recurring infrastructure and — worse — the ongoing cost of code nobody wrote a contract for. BoiledPlate Pro is €159 one-time with lifetime updates and no lock-in, and if you want to start free, ",[23,1104,1106],{"href":304,"rel":1105},[27],"BoiledPlate Lite is MIT-licensed",". What you actually pay for isn't the stack — it's the agent-readable contracts, deterministic patches, and compliance encoded as code.",[15,1109,1111],{"id":1110},"the-future-of-vibe-coding-maturity-not-speed","The Future of Vibe Coding: Maturity, Not Speed",[11,1113,1114,1115,1117],{},"The trajectory is clear: from \"write code fast\" to \"write code safely.\" ",[71,1116,73],{},"-style contracts are becoming the norm, and deterministic patches are the bridge between a natural-language prompt and code you'd put in front of a paying customer. Speed got us the demo. Consistency gets us production.",[15,1119,1121],{"id":1120},"getting-started","Getting Started",[11,1123,1124,1125,1129],{},"Use Gemini when you're learning or experimenting. Use an agent-driven kit when you're shipping something with money, tenants, or regulators involved. If your vibe-coded app touches billing state, isolates user data, or verifies a webhook signature, the plumbing is your project — and it's worth reading ",[23,1126,1128],{"href":123,"rel":1127},[27],"what wiring a Nuxt, Supabase and Stripe SaaS actually demands"," before you promise a launch date.",{"title":319,"searchDepth":320,"depth":320,"links":1131},[1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145],{"id":861,"depth":323,"text":862},{"id":871,"depth":323,"text":872},{"id":884,"depth":323,"text":885},{"id":916,"depth":323,"text":917},{"id":941,"depth":323,"text":942},{"id":962,"depth":323,"text":963},{"id":999,"depth":323,"text":1000},{"id":1017,"depth":323,"text":1018},{"id":1051,"depth":323,"text":1052},{"id":1063,"depth":323,"text":1064},{"id":1070,"depth":323,"text":1071},{"id":1098,"depth":323,"text":1099},{"id":1110,"depth":323,"text":1111},{"id":1120,"depth":323,"text":1121},"2026-07-17","Explore vibe coding with Google's Gemini: how natural language turns into working apps. Learn what's missing between impressive demos and production-ready systems.",{},"\u002Fblog\u002Fvibe-coding-gemini-production",{"title":853,"description":1147},"blog\u002Fvibe-coding-gemini-production",[1153,1154,1155,1156],"vibe-coding","gemini","ai-development","cloud-run","9t7yKExFOOtTP4gAd2PO34EvsBA731bM-sFnHMUa4E0",{"id":1159,"title":1160,"author":6,"body":1161,"category":6,"date":1487,"description":1488,"draft":339,"extension":340,"image":6,"meta":1489,"navigation":342,"path":1490,"seo":1491,"stem":1492,"tags":1493,"__hash__":1497},"blog\u002Fblog\u002Fandrej-karpathy-vibe-coding.md","Andrej Karpathy's Vibe Coding: The Rise and Fall",{"type":8,"value":1162,"toc":1471},[1163,1166,1170,1173,1176,1179,1182,1186,1200,1203,1206,1209,1213,1216,1219,1222,1226,1229,1241,1244,1251,1255,1258,1261,1264,1268,1274,1280,1286,1292,1298,1302,1310,1313,1316,1319,1323,1326,1329,1332,1336,1339,1342,1345,1349,1352,1359,1362,1366,1369,1415,1419,1422,1425,1429,1432,1435,1438,1442,1448,1454,1460],[11,1164,1165],{},"Andrej Karpathy dropped a tweet in February 2025 that renamed how a generation of developers talked about their work. \"Vibe coding,\" he called it — fully giving in to the vibes, embracing exponentials, forgetting the code even exists. Within a year the phrase was everywhere, then it curdled into a buzzword, and by February 2026 Karpathy himself had quietly moved on. This guide traces the whole arc: what vibe coding actually meant, where it breaks, and what serious builders do instead.",[461,1167,1169],{"id":1168},"what-is-vibe-coding","What is Vibe Coding?",[11,1171,1172],{},"Vibe coding is software development where you lean on a large language model to generate code and trust its output rather than reading every line. Karpathy's framing was deliberately loose: describe what you want, accept the diff, run it, and if it works, keep going.",[11,1174,1175],{},"The core philosophy is about embracing exponential capability. Models improve fast, so why fight them with perfectionism? You prompt, you iterate, you ship.",[11,1177,1178],{},"This is a genuine break from structured, methodical coding, where every function is reasoned about and every architectural decision is deliberate. Vibe coding says: let the model hold the details, you hold the intent.",[11,1180,1181],{},"The mindset shift is real. You stop being the author and start being the director. That works beautifully — right up until it doesn't.",[461,1183,1185],{"id":1184},"the-origins-karpathys-vision","The Origins: Karpathy's Vision",[11,1187,1188,1189,1194,1195,1199],{},"The ",[23,1190,1193],{"href":1191,"rel":1192},"https:\u002F\u002Fx.com\u002Fkarpathy\u002Fstatus\u002F1886192184808149383",[27],"original post"," landed in early 2025 and spread within days. ",[23,1196,1198],{"href":25,"rel":1197},[27],"Wikipedia"," now credits Karpathy with coining the term.",[11,1201,1202],{},"What he actually meant was narrower than how it was received. His examples were throwaway projects — weekend apps, scripts, things where a bug just meant asking the model to fix it. The point was fun, not recklessness.",[11,1204,1205],{},"The misinterpretation came fast. \"Vibe coding\" got read as license to ship production software without understanding it. That is not what the phrase was built to carry.",[11,1207,1208],{},"Context matters. In early 2025, AI coding was good enough to feel magical and immature enough to fail silently. Vibes filled the gap between capability and reliability.",[461,1210,1212],{"id":1211},"how-vibe-coding-actually-works-in-practice","How Vibe Coding Actually Works in Practice",[11,1214,1215],{},"In practice, vibe coding is a rhythm: prompt, read the result loosely, run it, correct with another prompt. You stay in flow, and the LLM absorbs the tedium.",[11,1217,1218],{},"The skill is knowing when to override the vibe. If the output touches money, auth, or user data, you stop vibing and start reading. If it's UI scaffolding or a data transform, you let it ride.",[11,1220,1221],{},"Tools like Cursor and Claude made this possible, but the real enabler was architectural: choosing a stack and conventions the model already understands well. A model vibes better inside familiar terrain.",[461,1223,1225],{"id":1224},"vibe-coding-meets-production-reality","Vibe Coding Meets Production Reality",[11,1227,1228],{},"Vibes carry you through scaffolding. They collapse at the plumbing.",[11,1230,1231,1232,1235,1236,1240],{},"We learned this building ",[23,1233,397],{"href":395,"rel":1234},[27],", where the stack was the easy part and the wiring ate the weeks. As we argued in ",[23,1237,1239],{"href":45,"rel":1238},[27],"how to ship SaaS fast",", the framework picks itself — Stripe verification, row-level security, and idempotency are where launches actually stall.",[11,1242,1243],{},"You cannot vibe your way to a signature-verified webhook. Cryptographic correctness is binary. Full vibe coding fails at scale because the failures are silent: a user sees someone else's data, a subscription state drifts, a webhook fires twice.",[11,1245,1246,1247,1250],{},"What helps is structure. Building SaaS with agents requires contracts — an ",[23,1248,73],{"href":164,"rel":1249},[27]," file that documents one way to do data access and secrets, so the agent stays consistent instead of inventing a fourth pattern.",[461,1252,1254],{"id":1253},"the-karpathy-pivot-why-he-moved-on-february-2026","The Karpathy Pivot: Why He Moved On (February 2026)",[11,1256,1257],{},"By February 2026, Karpathy had publicly declared vibe coding outdated. His reasoning: LLMs got smart enough that \"vibes\" was no longer the right word for what good AI-assisted development looked like.",[11,1259,1260],{},"The landscape had matured. Models could follow explicit conventions, apply structured edits, and reason about architecture. The loose, forget-the-code-exists ethos felt incomplete against that.",[11,1262,1263],{},"His pivot signals something bigger: AI development grew up. The frontier moved from \"trust the model\" to \"constrain the model well.\" The industry got stuck arguing about the word \"vibe\" while the actual evolution was happening in tooling and contracts.",[461,1265,1267],{"id":1266},"five-different-approaches-to-vibe-coding","Five Different Approaches to Vibe Coding",[11,1269,1270,1273],{},[66,1271,1272],{},"Pure vibes."," Full trust, minimal oversight. Great for scripts and prototypes. Fails predictably for anything with real users.",[11,1275,1276,1279],{},[66,1277,1278],{},"Vibes with guardrails."," Prompting combined with deterministic patches and schema validation, so the model's output gets checked before it lands.",[11,1281,1282,1285],{},[66,1283,1284],{},"Vibe coding for architecture."," Use agents to design systems and explore options, then let humans wire the sensitive plumbing by hand.",[11,1287,1288,1291],{},[66,1289,1290],{},"Agent-native development."," Build around an AGENTS.md contract so agents produce consistent output across months, not just across a single session.",[11,1293,1294,1297],{},[66,1295,1296],{},"Post-vibe coding."," Structured prompting, explicit contracts, deterministic outputs. This is the direction Karpathy's pivot points toward.",[461,1299,1301],{"id":1300},"vibe-coding-vs-deterministic-coding","Vibe Coding vs. Deterministic Coding",[11,1303,1304,1305,1309],{},"The problem with vibes alone is drift. An agent given three ways to fetch data will ",[23,1306,1308],{"href":164,"rel":1307},[27],"cheerfully add a fourth",", because it has no reason to prefer yours.",[11,1311,1312],{},"Drift costs rework. Every time LLM output diverges from your conventions, someone has to notice, refactor, and re-explain — often the agent itself, badly.",[11,1314,1315],{},"Deterministic patches and semantic contracts prevent this decay. Instead of hoping the model matches your style, you encode the style as rules it must follow.",[11,1317,1318],{},"The concrete cases make it obvious: webhook idempotency, RLS policies, and multi-language i18n are all places where \"close enough\" is a bug. There are five places a new locale string has to land before the build stops complaining, and vibes will find four of them.",[461,1320,1322],{"id":1321},"the-business-case-vibe-coding-in-startup-context","The Business Case: Vibe Coding in Startup Context",[11,1324,1325],{},"The speed gains from vibes are real and measurable — for the first mile. Scaffolding a landing page, a dashboard shell, a data model happens in minutes now.",[11,1327,1328],{},"Then the curve inverts. The weeks you saved on scaffolding get spent debugging the plumbing vibes couldn't handle. Founders who track this honestly land on the same rule: vibes for the MVP, structure for scale.",[11,1330,1331],{},"Karpathy's 2025 enthusiasm faded by 2026 partly through survivorship filtering. The demos that went viral were the ones that worked. The vibe-coded projects that quietly died in production billing bugs didn't trend.",[461,1333,1335],{"id":1334},"is-vibe-coding-dead","Is Vibe Coding Dead?",[11,1337,1338],{},"The buzzword trap killed the term more than the technique. Once every tool marketed itself as \"vibe coding,\" the phrase meant nothing.",[11,1340,1341],{},"What survived is the useful core: describe intent, let the model do the mechanical work, iterate fast.",[11,1343,1344],{},"What changed is the emphasis. LLMs are smarter, so the need for \"vibes\" shifted to \"conventions.\" The real skill now is judgment — knowing when to trust the agent and when to enforce determinism.",[461,1346,1348],{"id":1347},"the-anti-hype-take-what-developers-actually-need","The Anti-Hype Take: What Developers Actually Need",[11,1350,1351],{},"Here's the uncomfortable read: vibe coding solved the wrong problem. It framed the challenge as attitude — loosen up, trust the model — when the challenge was actually tooling.",[11,1353,1354,1355,48],{},"The real innovation was never vibes. It was agent-readable contracts: AGENTS.md, structured prompts, deterministic provisioning. Every starter that ships the stack misses the point; ",[23,1356,1358],{"href":781,"rel":1357},[27],"the stack was never the hard part",[11,1360,1361],{},"Starter kits with strong conventions beat pure vibes because they give the agent a floor. Building SaaS the way Karpathy now implies means structure plus AI, not vibes plus hope.",[461,1363,1365],{"id":1364},"technical-specifics-where-vibes-fail","Technical Specifics: Where Vibes Fail",[11,1367,1368],{},"Some things simply do not bend to attitude:",[86,1370,1371,1382,1388,1394,1405],{},[89,1372,1373,1376,1377,1381],{},[66,1374,1375],{},"Webhook signature verification."," You cannot vibe cryptographic correctness. See our writeup on treating ",[23,1378,1380],{"href":981,"rel":1379},[27],"the GitHub invite as the product",", where some failures must throw and some must never.",[89,1383,1384,1387],{},[66,1385,1386],{},"Row-level security."," RLS is explicit, not emergent. A missing policy is a data breach, not a rough edge.",[89,1389,1390,1393],{},[66,1391,1392],{},"Idempotent transactions."," The two-generals problem doesn't care how confident your prompt sounded.",[89,1395,1396,1399,1400,1404],{},[66,1397,1398],{},"Consent flows."," ",[23,1401,1403],{"href":139,"rel":1402},[27],"German withdrawal law"," has specific requirements you encode into the pay button, or you don't sell legally.",[89,1406,1407,1399,1410,1414],{},[66,1408,1409],{},"Billing state.",[23,1411,1413],{"href":148,"rel":1412},[27],"Stripe webhooks are the source of truth",", not the optimistic client-side success page.",[461,1416,1418],{"id":1417},"tools-and-patterns-for-post-vibe-coding","Tools and Patterns for Post-Vibe Coding",[11,1420,1421],{},"This is exactly what BoiledPlate encodes: the lessons of vibe coding turned into structure. Instead of vibing through setup, an agent-driven interview provisions Stripe products and webhooks, a Supabase database with RLS, and Google sign-in in one session — deterministically.",[11,1423,1424],{},"The AGENTS.md contract is the evolution of vibes into something a machine can read and honor. And semantic, agent-readable release notes let agents apply updates consistently instead of guessing.",[461,1426,1428],{"id":1427},"lessons-for-the-next-wave-of-ai-coding","Lessons for the Next Wave of AI Coding",[11,1430,1431],{},"Vibe coding was a necessary phase, not the destination. It taught developers that intent-first workflows are faster — and that unstructured trust doesn't survive production.",[11,1433,1434],{},"Karpathy's pivot tells us where things head: verification over trust, contracts over vibes. The skills that will matter are prompt engineering, contract design, and knowing what to check.",[11,1436,1437],{},"The best AI-native code, it turns out, looks less like vibes and more like highly structured conventions a model can follow without drifting.",[461,1439,1441],{"id":1440},"faq-common-misconceptions-about-vibe-coding","FAQ: Common Misconceptions About Vibe Coding",[11,1443,1444,1447],{},[66,1445,1446],{},"Does vibe coding mean no testing?"," No. The durable version is vibes plus verification — generate loosely, validate strictly.",[11,1449,1450,1453],{},[66,1451,1452],{},"Is Karpathy saying not to use LLMs?"," The opposite. Use them heavily, but with determinism and explicit constraints.",[11,1455,1456,1459],{},[66,1457,1458],{},"Can I ship production SaaS on vibes alone?"," Not sustainably. The plumbing — billing, security, compliance — demands structure.",[11,1461,1462,1465,1466,1470],{},[66,1463,1464],{},"What's the successor to vibe coding?"," Agent-native development built on contracts. Start from ",[23,1467,1469],{"href":304,"rel":1468},[27],"a boilerplate designed for agents"," rather than vibing the wiring yourself.",{"title":319,"searchDepth":320,"depth":320,"links":1472},[1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486],{"id":1168,"depth":320,"text":1169},{"id":1184,"depth":320,"text":1185},{"id":1211,"depth":320,"text":1212},{"id":1224,"depth":320,"text":1225},{"id":1253,"depth":320,"text":1254},{"id":1266,"depth":320,"text":1267},{"id":1300,"depth":320,"text":1301},{"id":1321,"depth":320,"text":1322},{"id":1334,"depth":320,"text":1335},{"id":1347,"depth":320,"text":1348},{"id":1364,"depth":320,"text":1365},{"id":1417,"depth":320,"text":1418},{"id":1427,"depth":320,"text":1428},{"id":1440,"depth":320,"text":1441},"2026-07-16","Explore vibe coding, Andrej Karpathy's controversial approach to AI-assisted development. Understand what it means, where it breaks, and serious alternatives.",{},"\u002Fblog\u002Fandrej-karpathy-vibe-coding",{"title":1160,"description":1488},"blog\u002Fandrej-karpathy-vibe-coding",[347,1494,1495,1496],"andrej karpathy","ai development","software engineering","SACUbmvSS-AaQ5e5rFj_7Tzsc3NC1Ldhz-Gf4C2uvSs",1784422316826]