[{"data":1,"prerenderedAt":1712},["ShallowReactive",2],{"blog-shipfast-alternatives":3,"related-shipfast-alternatives":477},{"id":4,"title":5,"author":6,"body":7,"category":6,"date":462,"description":463,"draft":464,"extension":465,"image":6,"meta":466,"navigation":467,"path":468,"seo":469,"stem":470,"tags":471,"__hash__":476},"blog\u002Fblog\u002Fshipfast-alternatives.md","ShipFast Alternatives: Nuxt + Supabase Comparison",null,{"type":8,"value":9,"toc":444},"minimark",[10,14,17,22,25,37,43,49,55,59,62,73,76,80,92,98,104,110,114,117,126,134,138,141,147,159,171,177,181,225,229,276,280,283,318,322,348,352,367,371,397,401,404,421,428,432,435],[11,12,13],"p",{},"Ask on r\u002FSaaS for a ShipFast alternative and you get a list of names: Kostra, Open SaaS, Shipped Club, Makerkit, IndieKit, CodeConductor. What you rarely get is an honest answer to the question underneath the question. People don't leave ShipFast because $150 is too much. They leave because the template hands them a working stack and then leaves the hard part — the wiring between services — as an exercise for the reader.",[11,15,16],{},"This is a comparison for a specific kind of builder: you use or want to use Nuxt and Supabase, you work with a coding agent like Claude, and you'd rather ship product than debug webhooks for a month. If that's not you, some of the alternatives below are perfectly good. If it is you, most of them leave the same gap.",[18,19,21],"h2",{"id":20},"why-developers-leave-shipfast-and-what-they-actually-need","Why Developers Leave ShipFast (And What They Actually Need)",[11,23,24],{},"ShipFast is Next.js, MongoDB, Stripe, Google Auth, Mailgun, Tailwind. It's a fine kit if that's your stack. The friction shows up in four places.",[11,26,27,31,32,36],{},[28,29,30],"strong",{},"Stack lock-in."," Next.js only. If you're a Nuxt shop, you're translating conventions before you write a line of your own. MongoDB means no Postgres row-level security — your multi-tenant isolation lives in application code, where it's one forgotten ",[33,34,35],"code",{},"where"," clause away from leaking data.",[11,38,39,42],{},[28,40,41],{},"Manual provisioning."," The template writes code. It doesn't create your Stripe products, register your webhook endpoint, or wire your Google sign-in credentials. You do all of that by hand, per environment.",[11,44,45,48],{},[28,46,47],{},"The plumbing tax."," Auth usually works out of the box. Billing edge cases don't. Refunds, failed payments, EU consent — those are left to you, and they're exactly the parts that take weeks.",[11,50,51,54],{},[28,52,53],{},"One-way customization."," You modify the template, the template gets an update, and now you're merging by hand. There's no semantic release layer designed for a coding agent to read and apply safely.",[18,56,58],{"id":57},"the-real-cost-of-free-vs-paid","The Real Cost of \"Free vs. Paid\"",[11,60,61],{},"The Reddit thread always tilts toward \"just use the free one.\" Kostra and Open SaaS are MIT-licensed and genuinely good. But free saves you a license fee, not the work. You still design RLS policies, still build idempotent webhook handling, still scaffold email templates, still wire consent flows.",[11,63,64,65,72],{},"What you pay for in a purpose-built kit isn't the code — code is cheap now. You pay for the accumulated decisions: idempotent webhook architecture, deterministic patches that customize the codebase without breaking it, and an agent contract that keeps output consistent. As ",[66,67,71],"a",{"href":68,"rel":69},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fhow-to-ship-saas-fast",[70],"nofollow","our post on shipping SaaS fast"," argues, the framework is not what slows you down. The plumbing between the pieces is.",[11,74,75],{},"DIY boilerplates cost more than they look when your time has a price. We'll put a number on that at the end.",[18,77,79],{"id":78},"stack-comparison-matrix","Stack Comparison Matrix",[11,81,82,85,86,91],{},[28,83,84],{},"The Next.js dominance myth."," Next.js is popular, not mandatory. For European SaaS, Nuxt earns its place: i18n is first-class, server composables keep your API tidy, and edge deployment is straightforward. BoiledPlate ships ",[66,87,90],{"href":88,"rel":89},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Ffree-nuxt-supabase-saas-boilerplate",[70],"four languages from day one"," — most Next.js starters treat i18n as a later problem.",[11,93,94,97],{},[28,95,96],{},"Database choice."," MongoDB versus PostgreSQL isn't a taste debate when compliance is involved. Postgres gives you transactions, auditability, and — via Supabase — row-level security enforced at query time. Security in the database beats security in a middleware you might forget to apply.",[11,99,100,103],{},[28,101,102],{},"Payment processors."," Stripe, Lemon Squeezy, or a hand-rolled webhook layer. Lemon Squeezy simplifies tax as a merchant of record, which is real value. But whatever you use, your billing state's source of truth should be the webhook, not a client redirect. More on that below.",[11,105,106,109],{},[28,107,108],{},"Auth maturity."," Google sign-in alone gets a user logged in. It does nothing for tenant isolation. RLS-enforced multi-tenancy is a different tier of maturity, and it's the one that matters once you have paying customers sharing a database.",[18,111,113],{"id":112},"agent-native-architecture-the-gap-nobody-addresses","Agent-Native Architecture (The Gap Nobody Addresses)",[11,115,116],{},"Here's the thing almost none of the alternatives address: your codebase now has a second author. You use Claude for features. So did the starter's author, probably. If there's no documented contract for how data access and secrets work, the agent drifts — and every session invents a new pattern.",[11,118,119,120,125],{},"BoiledPlate ships an AGENTS.md contract: one documented way to do data access, one place for secrets, so ",[66,121,124],{"href":122,"rel":123},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fconventions-for-ai-coding-agents",[70],"agent output stays consistent",". Combined with deterministic patches, a coding agent can reshape the starter to your answers safely rather than free-styling.",[11,127,128,129,133],{},"Shipped Club, Makerkit, and CodeConductor are all reasonable products, but none ship a documented agent contract as a first-class artifact. The real scenario this unlocks: Claude provisions your Stripe products ",[130,131,132],"em",{},"and"," updates the matching RLS policies in the same session, because both follow one written convention.",[18,135,137],{"id":136},"webhook-architecture-breakdown","Webhook Architecture Breakdown",[11,139,140],{},"The webhook is the product. The checkout is the easy bit.",[11,142,143,146],{},[28,144,145],{},"Idempotent design."," Stripe retries. If your handler isn't idempotent, a retry becomes a duplicate charge record or a double-provisioned subscription. Many free starters demo the happy path and never show the idempotency key handling.",[11,148,149,152,153,158],{},[28,150,151],{},"Failure recovery."," Some failures should return non-200 so Stripe retries; some should never throw, because retrying won't help and will just orphan state. We wrote about exactly this distinction in ",[66,154,157],{"href":155,"rel":156},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fthe-github-invite-is-the-product-building-a-stripe-webhook-where-delivery-throws",[70],"the Stripe webhook where some failures throw and some never do",".",[11,160,161,164,165,170],{},[28,162,163],{},"Source of truth."," Your ",[66,166,169],{"href":167,"rel":168},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fstripe-webhooks-source-of-truth",[70],"checkout success page should not touch billing state",". A user can close the tab before redirect; a refund never hits the success page at all. Only the webhook sees the full lifecycle.",[11,172,173,176],{},[28,174,175],{},"Signature verification."," BoiledPlate ships verified, idempotent webhook handling as working code — not as a paragraph in the docs telling you to add it.",[18,178,180],{"id":179},"billing-edge-cases-the-alternatives-skip","Billing Edge Cases the Alternatives Skip",[182,183,184,201,207,219],"ul",{},[185,186,187,190,191,194,195,200],"li",{},[28,188,189],{},"EU consent withdrawals."," German law requires an explicit withdrawal-right waiver for instant digital delivery. We encoded it directly into Stripe Checkout's ",[33,192,193],{},"consent_collection"," — ",[66,196,199],{"href":197,"rel":198},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fstripe-checkout-consent-collection-german-withdrawal-waiver",[70],"here's how",". Most starters ignore this entirely.",[185,202,203,206],{},[28,204,205],{},"Refund workflows."," Partial refunds, cancellation cascades, and an audit trail that survives a dispute.",[185,208,209,212,213,218],{},[28,210,211],{},"Multi-plan subscriptions."," Seat upgrades, downgrade proration, trial logic — ",[66,214,217],{"href":215,"rel":216},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fstripe-subscriptions-nuxt-supabase",[70],"five decisions"," most templates make for you badly.",[185,220,221,224],{},[28,222,223],{},"Churn."," Payment method failures, dunning, reactivation.",[18,226,228],{"id":227},"the-plumbing-tax-in-each-alternative","The \"Plumbing Tax\" in Each Alternative",[182,230,231,237,243,252,258,264,270],{},[185,232,233,236],{},[28,234,235],{},"Kostra (free, MIT)."," Excellent Next.js starter. You save $159 and spend it back in RLS design, webhook retries, and email scaffolding.",[185,238,239,242],{},[28,240,241],{},"Open SaaS (free)."," Solid and open. Verify the webhook signature-verification story yourself before relying on it in production.",[185,244,245,248,249,251],{},[28,246,247],{},"Shipped Club (paid)."," Stripe ",[130,250,132],{}," Lemon Squeezy, which is genuinely nice. Weaker on multi-language i18n from day one.",[185,253,254,257],{},[28,255,256],{},"Makerkit (paid)."," Full-featured and mature — but Next.js only, and not structured around an agent contract.",[185,259,260,263],{},[28,261,262],{},"CodeConductor (AI-focused)."," Prompt-based generation. Powerful, but there's no delivered, versioned scaffold to update over time.",[185,265,266,269],{},[28,267,268],{},"IndieKit."," B2B and B2C out of the box; typically tied to a single payment processor.",[185,271,272,275],{},[28,273,274],{},"LaunchFast, supastarter, AnotherWrapper."," All ship a stack competently. The shared shortfall is depth on webhook correctness and EU compliance.",[18,277,279],{"id":278},"technical-specificity-what-gaps-these-alternatives-leave","Technical Specificity: What Gaps These Alternatives Leave",[11,281,282],{},"Real bugs the polished demos don't mention, most of which we hit and documented:",[182,284,285,293,301,309,312,315],{},[185,286,287,292],{},[66,288,291],{"href":289,"rel":290},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fthe-page-that-returned-200-on-the-server-and-500-in-the-browser-a-json-ld-tempor",[70],"JSON-LD hydration crashes"," — 200 from curl, 500 in the browser, all from source order.",[185,294,295,300],{},[66,296,299],{"href":297,"rel":298},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Four-blog-canonically-pointed-at-localhost",[70],"Canonical URLs pointing at localhost"," across i18n routes.",[185,302,303,308],{},[66,304,307],{"href":305,"rel":306},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fvercel-web-analytics-nuxt-4-analytics-package-breaks-typecheck",[70],"Peer dependency conflicts in Nuxt"," — a package that quietly breaks typecheck.",[185,310,311],{},"RLS policy drift with no versioning convention.",[185,313,314],{},"Transactional email retry logic (sending exactly once with Resend is harder than sending).",[185,316,317],{},"Deployment environment variable validation.",[18,319,321],{"id":320},"when-to-pick-each-alternative","When to Pick Each Alternative",[182,323,324,330,336,342],{},[185,325,326,329],{},[28,327,328],{},"Kostra \u002F Open SaaS:"," you want maximum control and have 6+ weeks for plumbing.",[185,331,332,335],{},[28,333,334],{},"Shipped Club \u002F Makerkit:"," you're committed to their stack and won't drive updates with an agent.",[185,337,338,341],{},[28,339,340],{},"CodeConductor:"," you're prompt-first and don't want a pre-built scaffold.",[185,343,344,347],{},[28,345,346],{},"BoiledPlate:"," you want Nuxt + Supabase, value agent consistency, and need EU billing compliance with setup done in one session.",[18,349,351],{"id":350},"the-anti-plumbing-stack-why-these-tools-work-together","The Anti-Plumbing Stack: Why These Tools Work Together",[11,353,354,355,360,361,366],{},"Nuxt is the full-stack glue with built-in i18n and edge deployment. Supabase gives you Postgres plus RLS, so security is enforced at query time. Stripe webhooks are the single source of truth for billing. ",[66,356,359],{"href":357,"rel":358},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fnuxt-supabase-stripe-saas-boilerplate",[70],"Resend"," is transactional email native to TypeScript. Google sign-in removes password resets and their compliance theater. Each choice is defensible; the ",[66,362,365],{"href":363,"rel":364},"https:\u002F\u002Fdocs.stripe.com\u002Fwebhooks",[70],"official Stripe webhook docs"," will confirm why idempotency and signature verification aren't optional.",[18,368,370],{"id":369},"pricing-honesty","Pricing Honesty",[182,372,373,379,385,391],{},[185,374,375,378],{},[28,376,377],{},"ShipFast:"," ~$150 flat, no lifetime updates. You pay for the initial time save.",[185,380,381,384],{},[28,382,383],{},"BoiledPlate Lite:"," free, MIT, wire it by hand.",[185,386,387,390],{},[28,388,389],{},"BoiledPlate Pro:"," €159 one-time, lifetime semantic updates, instant delivery via GitHub, agent-readable AGENTS.md.",[185,392,393,396],{},[28,394,395],{},"Subscription kits:"," recurring fees with feature-gated updates and no agent contract.",[18,398,400],{"id":399},"the-shipping-cost-hidden-in-the-alternatives","The Shipping Cost Hidden in the Alternatives",[11,402,403],{},"Price out the \"free\" path at a contractor rate:",[182,405,406,409,412,415,418],{},[185,407,408],{},"Webhook retry logic: ~40 hours",[185,410,411],{},"RLS policy design and review: ~20 hours",[185,413,414],{},"EU consent forms: ~16 hours",[185,416,417],{},"Email template scaffolding: ~8 hours",[185,419,420],{},"Multi-language routing: ~12 hours",[11,422,423,424,427],{},"That's ~96 hours. At $150\u002Fhr, roughly ",[28,425,426],{},"$14,400"," of work — to save a €159 license.",[18,429,431],{"id":430},"conclusion-picking-the-right-plumbing-kit","Conclusion: Picking the Right Plumbing Kit",[11,433,434],{},"Plumbing isn't glamorous, but it's not optional. Free alternatives are free because they push that work onto you, and DIY looks cheap only until you count the hours. Agent-native architecture is a genuine differentiator: a documented contract plus deterministic patches means your starter can keep changing safely long after purchase. And EU billing compliance is exactly the kind of thing you should not learn on your own live checkout.",[11,436,437,438,443],{},"If your stack is Nuxt and Supabase and you build with an agent, ",[66,439,442],{"href":440,"rel":441},"https:\u002F\u002Fboiledplate.ai",[70],"BoiledPlate provisions the services instead of just writing the code",". Ship product, not plumbing.",{"title":445,"searchDepth":446,"depth":446,"links":447},"",3,[448,450,451,452,453,454,455,456,457,458,459,460,461],{"id":20,"depth":449,"text":21},2,{"id":57,"depth":449,"text":58},{"id":78,"depth":449,"text":79},{"id":112,"depth":449,"text":113},{"id":136,"depth":449,"text":137},{"id":179,"depth":449,"text":180},{"id":227,"depth":449,"text":228},{"id":278,"depth":449,"text":279},{"id":320,"depth":449,"text":321},{"id":350,"depth":449,"text":351},{"id":369,"depth":449,"text":370},{"id":399,"depth":449,"text":400},{"id":430,"depth":449,"text":431},"2026-08-08","Honest ShipFast alternatives for Nuxt + Supabase builders. Compare templates that handle real integration challenges without stack lock-in.",false,"md",{},true,"\u002Fblog\u002Fshipfast-alternatives",{"title":5,"description":463},"blog\u002Fshipfast-alternatives",[472,473,474,475],"SaaS Templates","Nuxt","Supabase","ShipFast","QLDDY03_21rZ0XEt3XZLs2I5Q10QE5W5KTYWJd7dZYU",[478,992,1413],{"id":479,"title":480,"author":6,"body":481,"category":6,"date":980,"description":981,"draft":464,"extension":465,"image":6,"meta":982,"navigation":467,"path":983,"seo":984,"stem":985,"tags":986,"__hash__":991},"blog\u002Fblog\u002Fshipfast-alternative.md","ShipFast Alternative: Why Developers Switch in 2026",{"type":8,"value":482,"toc":965},[483,486,490,493,499,505,515,521,525,533,580,584,587,590,598,602,609,615,621,627,638,644,650,653,657,660,680,683,687,690,697,704,708,711,722,728,734,744,750,761,771,775,882,886,889,902,906,909,913,945,949,952,956,959,962],[11,484,485],{},"ShipFast proved a point: developers will pay to skip the boring parts of launching a SaaS. But the boilerplate market has shifted since ShipFast set the template. Coding agents now write most of the glue code. Stacks have split across Next.js and Nuxt. And the hard part — the wiring between services — still isn't solved by a folder of stubs. If you're searching for a ShipFast alternative in 2026, the real question isn't which framework you get. It's whether the starter provisions your services or just hands you TODOs.",[18,487,489],{"id":488},"why-developers-leave-shipfast","Why developers leave ShipFast",[11,491,492],{},"ShipFast is a good product with a real limitation set. The complaints cluster into four themes.",[11,494,495,498],{},[28,496,497],{},"Cost versus long-term value."," A one-time purchase gets you a snapshot. When the underlying libraries move, you're on your own. There's no promise of updates that follow the codebase you've already customized.",[11,500,501,504],{},[28,502,503],{},"Framework lock-in."," ShipFast is Next.js. If you're a Nuxt or Vue developer, you either relearn React or look elsewhere. The boilerplate market treats Next.js as the default, and Nuxt developers get scraps.",[11,506,507,510,511,514],{},[28,508,509],{},"Manual wiring still required."," You still open ",[33,512,513],{},".env",", paste keys, create Stripe products by hand, and write webhook handlers. The boilerplate assumes a human sitting at a config file — not a coding agent doing the setup for you.",[11,516,517,520],{},[28,518,519],{},"Billing edge cases undocumented."," Refund state machines, EU consent waivers, webhook idempotency — the things that break in production three weeks after launch — are left as an exercise for the reader.",[18,522,524],{"id":523},"what-you-actually-need-in-a-saas-starter","What you actually need in a SaaS starter",[11,526,527,528,532],{},"The stack debate is a weekend argument. As we've ",[66,529,531],{"href":68,"rel":530},[70],"written before",", the framework picks itself; the plumbing is the project. A serious starter in 2026 needs:",[182,534,535,541,547,558,564,570],{},[185,536,537,540],{},[28,538,539],{},"Agent-native architecture."," A documented contract (AGENTS.md) so a coding agent produces consistent output instead of drifting.",[185,542,543,546],{},[28,544,545],{},"Service provisioning, not just boilerplate."," Stripe products and webhooks created, Supabase with row-level security applied, Google sign-in wired — automatically.",[185,548,549,552,553,557],{},[28,550,551],{},"Webhook architecture that survives production."," Idempotent, signature-verified, with Stripe as ",[66,554,556],{"href":167,"rel":555},[70],"the source of truth"," for billing state.",[185,559,560,563],{},[28,561,562],{},"Deterministic customization."," Patches that reshape the codebase to your answers, not a find-and-replace scavenger hunt.",[185,565,566,569],{},[28,567,568],{},"Multi-language and SEO from day one."," i18n, JSON-LD, canonical URLs.",[185,571,572,575,576,579],{},[28,573,574],{},"Real email infrastructure",", not a stubbed ",[33,577,578],{},"sendEmail()"," that logs to console.",[18,581,583],{"id":582},"the-free-and-open-source-tier","The free and open-source tier",[11,585,586],{},"There's a healthy free ecosystem: Open SaaS, supastarter, Makerkit, LaunchFast, ShipFree, Kostra. Most are Next.js. They handle auth and a checkout flow competently and cost nothing.",[11,588,589],{},"Where they plateau is predictable. Billing edge cases are thin. Service provisioning is manual. And none ship an agent contract, so if you customize with Claude, the code drifts across sessions.",[11,591,592,593,597],{},"The hidden cost of \"free\" is your time. You'll spend it wiring Stripe webhooks, writing RLS policies, and configuring email deliverability. BoiledPlate offers its own free tier here — ",[66,594,596],{"href":88,"rel":595},[70],"BoiledPlate Lite",", MIT-licensed, same Nuxt 4 + Supabase + Stripe + Resend app as the paid version, minus the AI tooling. You clone it and wire it by hand.",[18,599,601],{"id":600},"the-159-category-boiledplate-pro","The €159 category: BoiledPlate Pro",[11,603,604,608],{},[66,605,607],{"href":440,"rel":606},[70],"BoiledPlate Pro"," sits in the same price bracket as ShipFast ($150 \u002F €159) but changes what the money buys.",[11,610,611,614],{},[28,612,613],{},"One-time cost, lifetime updates."," Where ShipFast sells a version, Pro includes lifetime updates delivered as semantic, agent-readable release notes you can opt into on customized code.",[11,616,617,620],{},[28,618,619],{},"Agent-driven setup."," Your coding agent's first session interviews you — name, languages, theme, billing model — then reshapes the entire codebase with deterministic patches. No manual config archaeology.",[11,622,623,626],{},[28,624,625],{},"Services provisioned in one session."," Stripe products and webhooks, a Supabase database with RLS, Google sign-in. The plumbing nobody enjoys, done while you watch.",[11,628,629,632,633,637],{},[28,630,631],{},"Instant GitHub delivery."," The product is a repository invite, fired by a webhook on purchase — no download-and-unzip ritual. We wrote about ",[66,634,636],{"href":155,"rel":635},[70],"why the invite is the product"," and the failure modes that taught us to build it carefully.",[11,639,640,643],{},[28,641,642],{},"Built for agents."," A shipped AGENTS.md contract keeps Claude consistent across every customization.",[11,645,646,649],{},[28,647,648],{},"Real billing logic."," Idempotent webhooks, multi-plan subscriptions, and EU consent compliance baked in.",[11,651,652],{},"For a solo founder, this is the difference between shipping in weeks and debugging webhooks for months.",[18,654,656],{"id":655},"the-higher-end-alternatives","The higher-end alternatives",[11,658,659],{},"When you outgrow the mid-tier, a few options aim higher.",[182,661,662,668,674],{},[185,663,664,667],{},[28,665,666],{},"Shipped Club"," offers both Stripe and Lemon Squeezy, useful if you want payment-provider redundancy or merchant-of-record billing.",[185,669,670,673],{},[28,671,672],{},"IndieKit"," ships B2C and B2B flows out of the box — handy if you know you need team accounts on day one.",[185,675,676,679],{},[28,677,678],{},"CodeConductor"," leans fully AI-first, with prompt-based development and workflow tooling.",[11,681,682],{},"Pick these when your requirements are known and heavy from the start. For most first products, they're more surface area than you need.",[18,684,686],{"id":685},"framework-specific-breakdown","Framework-specific breakdown",[11,688,689],{},"Next.js dominates the boilerplate space because of ecosystem gravity: Vercel's marketing, the React hiring pool, and years of head start. That's why almost every ShipFast alternative on the first page of search results is React.",[11,691,692,693,696],{},"The ",[28,694,695],{},"Nuxt gap"," is real. Production-ready Nuxt SaaS starters are rare, which is exactly the space BoiledPlate fills. If you already think in Vue, you shouldn't have to adopt React just to get a wired-up starter.",[11,698,699,700,158],{},"The React-versus-Vue trade-off comes down to ecosystem size versus developer experience. React has more packages and more Stack Overflow answers. Vue and Nuxt offer a calmer authoring experience and, in our view, less ceremony. Neither is wrong. But if you prefer Nuxt, the market has been underserving you — ",[66,701,703],{"href":357,"rel":702},[70],"that's the whole premise",[18,705,707],{"id":706},"the-plumbing-nobody-talks-about","The plumbing nobody talks about",[11,709,710],{},"This is where alternatives quietly fail, because it's the work you don't see until it breaks.",[11,712,713,716,717,721],{},[28,714,715],{},"Webhook idempotency."," Stripe will deliver the same event more than once. If your handler isn't idempotent, you double-grant access or double-count revenue. ",[66,718,720],{"href":363,"rel":719},[70],"Stripe's own docs"," recommend designing for this, yet most boilerplates ship a naive handler.",[11,723,724,727],{},[28,725,726],{},"Row-level security."," Example RLS in a README is not production RLS. The policies you forget — the ones covering joins and service-role paths — are where data leaks.",[11,729,730,733],{},[28,731,732],{},"Refund flows."," Partial refunds, event ordering, and subscription state make a genuine state machine. Client-side \"you paid!\" pages don't cut it.",[11,735,736,739,740,158],{},[28,737,738],{},"EU consent waivers."," German law requires an explicit waiver of the withdrawal right for instant digital delivery. We encoded exactly this into the pay button using ",[66,741,743],{"href":197,"rel":742},[70],"Stripe Checkout's consent_collection",[11,745,746,749],{},[28,747,748],{},"Email deliverability."," A stub logs to console. Resend actually delivers, and getting \"exactly once\" right is its own small project.",[11,751,752,755,756,760],{},[28,753,754],{},"JSON-LD hydration bugs."," We shipped a page that returned ",[66,757,759],{"href":289,"rel":758},[70],"200 from curl and 500 in Chrome"," — a source-order bug in structured data. SEO breaks in ways no tutorial warns you about.",[11,762,763,766,767,770],{},[28,764,765],{},"Canonical URL edge cases."," Our blog once told Google its canonical URL was ",[33,768,769],{},"localhost:3000",". Small mistake, real ranking cost.",[18,772,774],{"id":773},"cost-comparison-matrix","Cost comparison matrix",[776,777,778,800],"table",{},[779,780,781],"thead",{},[782,783,784,788,791,794,797],"tr",{},[785,786,787],"th",{},"Option",[785,789,790],{},"Price",[785,792,793],{},"Framework",[785,795,796],{},"Services provisioned",[785,798,799],{},"Updates",[801,802,803,820,837,851,866],"tbody",{},[782,804,805,808,811,814,817],{},[806,807,475],"td",{},[806,809,810],{},"$150 one-time",[806,812,813],{},"Next.js only",[806,815,816],{},"Manual wiring",[806,818,819],{},"Single version",[782,821,822,825,828,831,834],{},[806,823,824],{},"Open-source (Open SaaS, Kostra, ShipFree)",[806,826,827],{},"Free",[806,829,830],{},"Next.js",[806,832,833],{},"Manual; billing often thin",[806,835,836],{},"Community",[782,838,839,841,844,846,848],{},[806,840,596],{},[806,842,843],{},"Free (MIT)",[806,845,473],{},[806,847,816],{},[806,849,850],{},"Public repo",[782,852,853,855,858,860,863],{},[806,854,607],{},[806,856,857],{},"€159 one-time",[806,859,473],{},[806,861,862],{},"Agent-provisioned",[806,864,865],{},"Lifetime",[782,867,868,871,874,877,880],{},[806,869,870],{},"Enterprise (CodeConductor, IndieKit)",[806,872,873],{},"Higher",[806,875,876],{},"Varies",[806,878,879],{},"More connectors",[806,881,876],{},[18,883,885],{"id":884},"agent-consistency-a-new-criterion-for-2026","Agent consistency: a new criterion for 2026",[11,887,888],{},"Traditional boilerplates optimize for human customization — folder conventions, inline comments, \"edit here.\" Agents don't read comments the way you hope. Without a contract, they drift: two data-access patterns, two ways to read secrets, three subtly different webhook handlers.",[11,890,891,892,897,898,158],{},"AGENTS.md is the fix — ",[66,893,896],{"href":894,"rel":895},"https:\u002F\u002Fboiledplate.ai\u002Fblog\u002Fnuxt-saas-boilerplate-for-ai-agents",[70],"one documented way"," to do data access, secrets, and updates. BoiledPlate ships that contract and applies deterministic patches, so customizations stay consistent and auditable. The payoff is faster iteration and fewer hallucinated abstractions. If you're writing conventions at all, ",[66,899,901],{"href":122,"rel":900},[70],"write them for the agent, not the next hire",[18,903,905],{"id":904},"the-real-question-stack-versus-plumbing","The real question: stack versus plumbing",[11,907,908],{},"Framework choice takes a weekend. Wiring Stripe webhooks, RLS, email, and auth into something trustworthy takes weeks. Most alternatives solve the framework problem and stop. Few solve the plumbing. BoiledPlate is anti-plumbing: provisioning and contracts instead of stubs.",[18,910,912],{"id":911},"decision-tree-which-alternative-for-you","Decision tree: which alternative for you?",[182,914,915,921,927,933,939],{},[185,916,917,920],{},[28,918,919],{},"Solo founder, one SaaS, next six months:"," BoiledPlate Pro if you want services provisioned; ShipFast if you're deep in React and don't mind manual wiring.",[185,922,923,926],{},[28,924,925],{},"Using Claude or coding agents:"," BoiledPlate, for the AGENTS.md contract.",[185,928,929,932],{},[28,930,931],{},"Nuxt preference or Next.js fatigue:"," BoiledPlate is the production-ready Nuxt option.",[185,934,935,938],{},[28,936,937],{},"EU compliance critical:"," BoiledPlate, for the consent flows and reliable billing state machine.",[185,940,941,944],{},[28,942,943],{},"Scale-first, shipping second:"," the higher-end options earn their price here.",[18,946,948],{"id":947},"honest-trade-offs","Honest trade-offs",[11,950,951],{},"BoiledPlate doesn't win everywhere. Next.js has the larger ecosystem and more third-party packages. Some enterprise-focused kits ship more out-of-box connectors. And there's a genuine tension between freestyle tweaks and patch-compatible updates — the more you diverge from the contract, the harder clean updates become. That trade-off is honest and worth naming.",[18,953,955],{"id":954},"getting-started","Getting started",[11,957,958],{},"Evaluate any alternative against a short checklist: are services provisioned or stubbed, is there an agent contract, are the webhooks idempotent and signature-verified. Coming from ShipFast, your product logic and design sense carry over; the wiring gets rebuilt on the new stack.",[11,960,961],{},"Your first 48 hours with Pro look like an agent interview, a GitHub invite, and a first deploy. The common mistakes are the same everywhere: ignoring webhook idempotency, leaving RLS gaps, and skipping email configuration until launch day.",[11,963,964],{},"The 2026 shift is simple. Agents expect contracts, not flexibility. Starters that give them one — and provision the services humans used to wire by hand — are what \"ship fast\" actually means now.",{"title":445,"searchDepth":446,"depth":446,"links":966},[967,968,969,970,971,972,973,974,975,976,977,978,979],{"id":488,"depth":449,"text":489},{"id":523,"depth":449,"text":524},{"id":582,"depth":449,"text":583},{"id":600,"depth":449,"text":601},{"id":655,"depth":449,"text":656},{"id":685,"depth":449,"text":686},{"id":706,"depth":449,"text":707},{"id":773,"depth":449,"text":774},{"id":884,"depth":449,"text":885},{"id":904,"depth":449,"text":905},{"id":911,"depth":449,"text":912},{"id":947,"depth":449,"text":948},{"id":954,"depth":449,"text":955},"2026-08-07","Compare ShipFast alternatives for SaaS boilerplates. Discover why developers switch and find the best starter for Next.js, Nuxt, and service integration.",{},"\u002Fblog\u002Fshipfast-alternative",{"title":480,"description":981},"blog\u002Fshipfast-alternative",[987,988,989,990],"saas-boilerplate","shipfast-alternative","nextjs-starter","web-development","b-w3OVEDZk52eLKwdfsBHPgG47HMCnmSfdnvHexSsNQ",{"id":993,"title":994,"author":6,"body":995,"category":6,"date":1401,"description":1402,"draft":464,"extension":465,"image":6,"meta":1403,"navigation":467,"path":1404,"seo":1405,"stem":1406,"tags":1407,"__hash__":1412},"blog\u002Fblog\u002Fshipfast-ai-boiledplate-comparison.md","ShipFast AI vs BoiledPlate: SaaS Starter Comparison",{"type":8,"value":996,"toc":1384},[997,1000,1008,1012,1019,1022,1026,1029,1046,1049,1053,1065,1068,1087,1091,1094,1110,1126,1130,1137,1140,1144,1150,1153,1156,1160,1163,1168,1173,1180,1184,1187,1225,1229,1232,1252,1260,1264,1276,1280,1294,1298,1312,1316,1319,1323,1326,1353,1360,1364,1377],[11,998,999],{},"When developers compare SaaS starters, the debate usually turns into a framework argument: Next.js or Nuxt, Vercel or a plain Node host. That's the wrong fight. Picking a stack takes an afternoon. The real work — wiring Stripe, Supabase, and email into something that survives a refund at 3 AM — is what eats weeks. This is where \"shipfast ai\" tools and their alternatives actually differ.",[11,1001,1002,1003,1007],{},"ShipFast dominates the search results because it nailed the Next.js audience early. But if your team lives in Vue and Nuxt, or you're building alongside a coding agent, the calculus changes. Here's an honest comparison of ShipFast, ",[66,1004,1006],{"href":440,"rel":1005},[70],"BoiledPlate",", and the option nobody markets: building from scratch.",[18,1009,1011],{"id":1010},"why-saas-starters-matter-but-most-miss-the-point","Why SaaS Starters Matter (But Most Miss the Point)",[11,1013,1014,1015,1018],{},"Ask ten founders how to ship fast and you get ten stack arguments. The framework is not what slows you down. As we've ",[66,1016,531],{"href":68,"rel":1017},[70],", the bottleneck is the plumbing between the pieces — webhook idempotency, row-level security, refund state, EU consent flows. None of it is clever. All of it is load-bearing.",[11,1020,1021],{},"A good starter absorbs that plumbing so you don't rediscover it under launch pressure. Both ShipFast and BoiledPlate do this. They just make different bets about how.",[18,1023,1025],{"id":1024},"what-shipfast-does-well","What ShipFast Does Well",[11,1027,1028],{},"ShipFast is a mature Next.js + TypeScript foundation with proven defaults. Its strengths are real:",[182,1030,1031,1034,1037,1040,1043],{},[185,1032,1033],{},"A polished UI component library out of the box",[185,1035,1036],{},"A marketing site template included",[185,1038,1039],{},"Battle-tested Stripe integration",[185,1041,1042],{},"A large community and extensive written guides",[185,1044,1045],{},"Ecosystem maturity that makes debugging faster",[11,1047,1048],{},"If you're already committed to Next.js and Vercel, ShipFast gives you a running start and a big crowd to ask when something breaks.",[18,1050,1052],{"id":1051},"the-boiledplate-difference-ai-native-setup","The BoiledPlate Difference: AI-Native Setup",[11,1054,1055,1056,1059,1060,1064],{},"BoiledPlate makes a different bet. Instead of \"clone the repo, read the docs, wire it up,\" your coding agent interviews you — name, languages, theme, billing model — then reshapes the codebase with ",[28,1057,1058],{},"deterministic patches",". Stripe products and webhooks, a ",[66,1061,1063],{"href":357,"rel":1062},[70],"Supabase database with RLS",", and Google sign-in are provisioned in one session, not documented for you to do later.",[11,1066,1067],{},"Two things anchor this:",[182,1069,1070,1076],{},[185,1071,1072,1075],{},[28,1073,1074],{},"Nuxt 4 + TypeScript strict mode",", aimed at production apps rather than throwaway MVPs.",[185,1077,1078,1081,1082,1086],{},[28,1079,1080],{},"AGENTS.md",", a contract file that gives agents one documented way to do data access and secrets, so ",[66,1083,1085],{"href":122,"rel":1084},[70],"their output stays consistent"," across every customization.",[18,1088,1090],{"id":1089},"billing-that-survives-reality","Billing That Survives Reality",[11,1092,1093],{},"Checkout is the easy part. The webhook is the product.",[11,1095,1096,1097,1100,1101,1104,1105,1109],{},"Stripe retries. Networks duplicate. A customer refunds mid-cycle. If your billing logic isn't ",[28,1098,1099],{},"idempotent"," and ",[28,1102,1103],{},"signature-verified",", you'll double-grant access or corrupt subscription state. BoiledPlate's webhook architecture is replay-safe by design, and its rule is blunt: ",[66,1106,1108],{"href":167,"rel":1107},[70],"your success page should not touch billing state",". Webhooks own the truth.",[11,1111,1112,1113,1117,1118,1122,1123,1125],{},"This matters more once you model real subscriptions — trials, downgrades, mid-cycle changes. We break down ",[66,1114,1116],{"href":215,"rel":1115},[70],"the five decisions behind Stripe subscriptions"," on a Nuxt + Supabase stack. And if you sell in the EU, compliance isn't optional: BoiledPlate encodes things like the ",[66,1119,1121],{"href":197,"rel":1120},[70],"German withdrawal waiver directly into the pay button"," via Stripe's ",[33,1124,193],{},". That's the kind of edge case a generic boilerplate leaves as a TODO.",[18,1127,1129],{"id":1128},"authentication-done-right","Authentication Done Right",[11,1131,1132,1133,1136],{},"ShipFast leans on Next.js patterns and session-table role checks. BoiledPlate leans on Supabase with ",[28,1134,1135],{},"row-level security"," — access rules enforced at query time in the database, not scattered across middleware.",[11,1138,1139],{},"The practical difference: RLS policies scale better than application-layer checks because there's no code path where you can forget to guard a query. The database refuses the row. Google sign-in is provisioned during setup rather than left as a docs page, and the usual pitfalls — JWT expiry, refresh token rotation, consent blockers — are already wired.",[18,1141,1143],{"id":1142},"the-stack-choice-matters-more-than-marketing-says","The Stack Choice Matters More Than Marketing Says",[11,1145,1146,1147,158],{},"Nuxt, Supabase, Stripe, and Resend work well together, but each demands something specific. Supabase auth is the fast part; RLS is the part you forget. Stripe's webhook is the real work. Resend is simple to send but annoying to send ",[130,1148,1149],{},"exactly once",[11,1151,1152],{},"ShipFast assumes Next.js and rewards you for staying inside Vercel's world — Edge Middleware, ISR, and tight integration. That's an advantage if you want it and a lock-in if you don't. BoiledPlate runs on any Node.js host, which trades some Vercel-specific magic for portability.",[11,1154,1155],{},"Neither database model is universally \"better.\" Supabase RLS pushes security down into Postgres; traditional auth keeps it in application code where it's more visible but easier to leak. Choose based on where you want your bugs to live.",[18,1157,1159],{"id":1158},"agent-driven-setup-vs-manual-wiring","Agent-Driven Setup vs. Manual Wiring",[11,1161,1162],{},"This is the sharpest fork.",[11,1164,1165,1167],{},[28,1166,377],{}," clone, read docs, wire manually. Slower, but maximally flexible — you decide everything.",[11,1169,1170,1172],{},[28,1171,346],{}," answer the interview, the agent applies patches, services get provisioned. Faster, but opinionated.",[11,1174,1175,1176,158],{},"Deterministic patches beat freeform code generation because they're repeatable and reviewable — the same answers always produce the same diff. The hidden cost of pure flexibility is the decision loop: more options mean longer setup. As we've argued, ",[66,1177,1179],{"href":894,"rel":1178},[70],"every boilerplate ships the stack — that was never the hard part",[18,1181,1183],{"id":1182},"features-you-actually-need","Features You Actually Need",[11,1185,1186],{},"Both ships cover the essentials; the details differ:",[182,1188,1189,1195,1201,1207,1213,1219],{},[185,1190,1191,1194],{},[28,1192,1193],{},"Blog with prerendered Markdown"," — SEO by default, not a plugin dependency.",[185,1196,1197,1200],{},[28,1198,1199],{},"JSON-LD + og:url + canonicals"," — done carefully, because server-rendered frameworks hide sharp edges here (more below).",[185,1202,1203,1206],{},[28,1204,1205],{},"i18n"," — four languages from day one in BoiledPlate, not an afterthought.",[185,1208,1209,1212],{},[28,1210,1211],{},"Transactional email"," — Resend integration rather than SendGrid boilerplate.",[185,1214,1215,1218],{},[28,1216,1217],{},"TypeScript strict mode"," — catches real bugs, not just type aesthetics.",[185,1220,1221,1224],{},[28,1222,1223],{},"Dashboard theming"," — pick a preset or describe a custom theme and the agent maps it onto the codebase.",[18,1226,1228],{"id":1227},"real-world-debugging-stories-both-ships-encounter","Real-World Debugging Stories Both Ships Encounter",[11,1230,1231],{},"Any server-rendered starter hits the same class of bugs. Two we've documented publicly:",[182,1233,1234,1242],{},[185,1235,1236,1237,1241],{},"A page that ",[66,1238,1240],{"href":289,"rel":1239},[70],"returned 200 from curl but 500 in Chrome"," — a JSON-LD hydration issue that lived in source order.",[185,1243,1244,1245,1251],{},"A blog that ",[66,1246,1248,1249],{"href":297,"rel":1247},[70],"told Google its canonical URL was ",[33,1250,769],{},", quietly tanking SEO.",[11,1253,1254,1255,1259],{},"These aren't exotic. They're the tax of shipping SSR apps, and the value of a maintained starter is that someone already paid it. ",[66,1256,1258],{"href":363,"rel":1257},[70],"Stripe's own webhook documentation"," is worth reading on why retries and idempotency keys aren't optional.",[18,1261,1263],{"id":1262},"instant-delivery-and-updates","Instant Delivery and Updates",[11,1265,1266,1267,1271,1272,1275],{},"BoiledPlate treats ",[66,1268,1270],{"href":155,"rel":1269},[70],"the GitHub invite as the product"," — buy once, and a webhook grants repo access instantly. That also changes updates: semantic, agent-readable release notes let you take ",[28,1273,1274],{},"opt-in"," updates without the merge hell of reconciling a ZIP download against your customized code.",[18,1277,1279],{"id":1278},"when-to-choose-shipfast","When to Choose ShipFast",[182,1281,1282,1285,1288,1291],{},[185,1283,1284],{},"You're betting heavily on Next.js and its ecosystem.",[185,1286,1287],{},"You want the largest community for debugging.",[185,1289,1290],{},"You prefer extensive docs over agent-driven setup.",[185,1292,1293],{},"You need Vercel-specific features like Edge Middleware or ISR.",[18,1295,1297],{"id":1296},"when-to-choose-boiledplate","When to Choose BoiledPlate",[182,1299,1300,1303,1306,1309],{},[185,1301,1302],{},"Your team uses Nuxt or Vue and wants to stay there.",[185,1304,1305],{},"You're building with a coding agent (Claude) and value consistency.",[185,1307,1308],{},"You want RLS enforced at the database, not the app layer.",[185,1310,1311],{},"You want one-session setup and updates your agent can parse.",[18,1313,1315],{"id":1314},"building-from-scratch-instead","Building From Scratch Instead",[11,1317,1318],{},"Sometimes a starter is overkill — a one-person tool with a unique billing model may not fit either. But be honest about the cost. Rough time-to-launch: ShipFast around 2–3 weeks, BoiledPlate around 1–2 weeks, from scratch 4–6 weeks — before security reviews, webhook testing, and refund logic. \"From scratch\" often quietly becomes \"fork a starter anyway.\"",[18,1320,1322],{"id":1321},"the-decision-framework","The Decision Framework",[11,1324,1325],{},"Ask four questions:",[1327,1328,1329,1335,1341,1347],"ol",{},[185,1330,1331,1334],{},[28,1332,1333],{},"Stack affinity"," — Next.js or Nuxt\u002FVue?",[185,1336,1337,1340],{},[28,1338,1339],{},"Agent usage"," — are you coding with Claude?",[185,1342,1343,1346],{},[28,1344,1345],{},"Billing complexity"," — trials, EU consent, refunds?",[185,1348,1349,1352],{},[28,1350,1351],{},"Update path"," — can you take upgrades without merge hell?",[11,1354,1355,1356,1359],{},"Red flags in ",[130,1357,1358],{},"any"," starter: hidden dependencies, thin docs, and no clear update path.",[18,1361,1363],{"id":1362},"action-steps-evaluate-and-launch","Action Steps: Evaluate and Launch",[11,1365,1366,1367,1371,1372,1376],{},"You can try both before committing. Clone ShipFast's foundation, and start with the ",[66,1368,1370],{"href":88,"rel":1369},[70],"free, MIT-licensed BoiledPlate Lite"," — same app as Pro, minus the AI tooling that makes it set itself up. If the agent-driven flow fits, ",[66,1373,1375],{"href":440,"rel":1374},[70],"BoiledPlate Pro is €159 one-time"," with lifetime updates and instant GitHub delivery.",[11,1378,1379,1380,1383],{},"The framework was never what slowed you down. Pick the starter whose ",[130,1381,1382],{},"plumbing"," matches your constraints, and spend next week building product instead of wiring services.",{"title":445,"searchDepth":446,"depth":446,"links":1385},[1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400],{"id":1010,"depth":449,"text":1011},{"id":1024,"depth":449,"text":1025},{"id":1051,"depth":449,"text":1052},{"id":1089,"depth":449,"text":1090},{"id":1128,"depth":449,"text":1129},{"id":1142,"depth":449,"text":1143},{"id":1158,"depth":449,"text":1159},{"id":1182,"depth":449,"text":1183},{"id":1227,"depth":449,"text":1228},{"id":1262,"depth":449,"text":1263},{"id":1278,"depth":449,"text":1279},{"id":1296,"depth":449,"text":1297},{"id":1314,"depth":449,"text":1315},{"id":1321,"depth":449,"text":1322},{"id":1362,"depth":449,"text":1363},"2026-08-06","Compare ShipFast AI with BoiledPlate and other SaaS starters. Learn which tool best handles Stripe, Supabase, and email integration for faster shipping.",{},"\u002Fblog\u002Fshipfast-ai-boiledplate-comparison",{"title":994,"description":1402},"blog\u002Fshipfast-ai-boiledplate-comparison",[1408,1409,1410,1411],"saas-starters","shipfast-ai","boiledplate","next.js","PAV47M0nWRfGyWBxEkl3yI6hu0UuAKNZ2rxCRq2AId0",{"id":1414,"title":1415,"author":6,"body":1416,"category":6,"date":1700,"description":1701,"draft":464,"extension":465,"image":6,"meta":1702,"navigation":467,"path":1703,"seo":1704,"stem":1705,"tags":1706,"__hash__":1711},"blog\u002Fblog\u002Fshipfast-agency-vs-self-serve-automation.md","ShipFast Agency vs Self-Serve Automation",{"type":8,"value":1417,"toc":1686},[1418,1421,1424,1428,1431,1434,1437,1441,1444,1452,1455,1463,1467,1473,1476,1479,1483,1486,1510,1518,1522,1525,1528,1539,1547,1551,1554,1578,1586,1590,1593,1596,1599,1603,1606,1609,1613,1616,1619,1623,1630,1643,1647,1650,1654,1674,1683],[11,1419,1420],{},"Search \"shipfast agency\" and you'll find a familiar pitch: AI-powered development shops that promise to build your app \"10x faster and cheaper,\" in weeks not months. It's an appealing model when you're staring at an empty repo. But there's a quieter alternative that changes the math entirely — self-serve automation that hands you the codebase, provisions your services, and never sends an invoice again after the first one.",[11,1422,1423],{},"This is a comparison between two ways of getting to production: hiring an agency to build your SaaS, or using an agent-native starter that wires the plumbing for you. Both have their place. Here's where each one actually wins.",[18,1425,1427],{"id":1426},"the-agency-model-what-it-actually-costs","The Agency Model: What It Actually Costs",[11,1429,1430],{},"Agencies sell calendar time. When someone quotes \"four weeks to launch,\" they're selling four weeks of their availability, not four weeks of your product shipping. The gap between those two things is filled with communication overhead: kickoff calls, scope documents, Slack threads waiting on replies, and the inevitable handoff friction when the people who built it move on to the next client.",[11,1432,1433],{},"The \"10x faster\" claim is real in one sense — agencies aren't rebuilding the wheel for each client, so they move quickly through the common parts. But speed through boilerplate doesn't mean they've solved the hard parts. The billing edge cases, the refund flows, the consent laws: those still get handwaved, because they're not sexy enough to feature in a portfolio.",[11,1435,1436],{},"Then there's the ownership question. A retainer at $5,000–$15,000 a month buys you an app you don't fully understand, built by people who leave. Compare that to internal tooling you own forever, and the math shifts fast.",[18,1438,1440],{"id":1439},"the-plumbing-problem-agencies-dont-solve","The Plumbing Problem Agencies Don't Solve",[11,1442,1443],{},"Agencies build your app. You inherit the maintenance debt.",[11,1445,1446,1447,1451],{},"The work that actually eats launch timelines isn't the framework choice — ",[66,1448,1450],{"href":68,"rel":1449},[70],"as we've argued before, the stack picks itself",". It's the wiring between services: webhook idempotency, row-level security design, refund handling, subscription state management. None of it is clever. All of it is endless and slightly different every time.",[11,1453,1454],{},"Here's the trap: your agency ships it, and six months later your next engineer spends weeks re-learning the billing logic because nobody documented why the webhook handler retries the way it does. The knowledge left with the contractor.",[11,1456,1457,1458,1462],{},"That's the problem an ",[66,1459,1461],{"href":122,"rel":1460},[70],"AGENTS.md contract"," is designed to solve. Instead of tribal knowledge, you get one documented way to access data and handle secrets — so the logic is repeatable, not mysterious, and the next agent (or human) doesn't have to reverse-engineer it.",[18,1464,1466],{"id":1465},"boiledplate-the-anti-agency-stack","BoiledPlate: The Anti-Agency Stack",[11,1468,1469,1472],{},[66,1470,1006],{"href":440,"rel":1471},[70]," inverts the agency relationship. You keep the code, the database, and the customer relationship. There's no black-box handoff, no \"the agency built it and then vanished\" moment.",[11,1474,1475],{},"The setup is agent-driven: your coding agent interviews you — name, languages, theme, billing model — then reshapes the codebase with deterministic patches. Because those patches are deterministic, you can audit and modify what changed. Nothing happens that you can't inspect.",[11,1477,1478],{},"The pricing model is the clearest difference. It's €159 one-time with lifetime updates, versus an ongoing retainer that never stops. At six months of retainer spend, you'd have paid for a senior developer several times over.",[18,1480,1482],{"id":1481},"why-these-specific-tools","Why These Specific Tools",[11,1484,1485],{},"The stack is Nuxt, Supabase, and Stripe — and each choice avoids a specific \"we picked wrong at month three\" regret.",[182,1487,1488,1493,1504],{},[185,1489,1490,1492],{},[28,1491,473],{}," gives you a typed, full-stack framework with conventions agents can follow reliably.",[185,1494,1495,1497,1498,1503],{},[28,1496,474],{}," enforces ",[66,1499,1502],{"href":1500,"rel":1501},"https:\u002F\u002Fsupabase.com\u002Fdocs\u002Fguides\u002Fdatabase\u002Fpostgres\u002Frow-level-security",[70],"row-level security at query time",", which means your database doesn't trust the frontend or even the webhook for authorization — it's enforced where it can't be bypassed.",[185,1505,1506,1509],{},[28,1507,1508],{},"Stripe"," is the source of truth for billing state. Your frontend success page never decides whether someone paid.",[11,1511,1512,1513,1517],{},"That last point matters more than it sounds. ",[66,1514,1516],{"href":167,"rel":1515},[70],"Your checkout success page should not touch your billing state"," — because a user closing the tab, a flaky network, or a double-submit shouldn't corrupt what a customer is entitled to. Stripe's webhooks decide; your app reacts.",[18,1519,1521],{"id":1520},"the-real-speed-bottleneck-wiring-not-writing","The Real Speed Bottleneck: Wiring, Not Writing",[11,1523,1524],{},"Agencies sell design and features because those are visible. Plumbing is invisible work — you only notice it when it breaks.",[11,1526,1527],{},"BoiledPlate pre-wires the invisible parts:",[182,1529,1530,1533,1536],{},[185,1531,1532],{},"Stripe webhooks with signature verification and idempotency, so replayed events don't double-charge or double-provision.",[185,1534,1535],{},"Google sign-in on top of Supabase auth as a single decision in the setup interview, not three weeks of OAuth debugging.",[185,1537,1538],{},"Transactional email through Resend, already integrated — no separate vendor hunt, no SMTP troubleshooting weekend.",[11,1540,1541,1542,1546],{},"This is the leverage. The framework was never the bottleneck; ",[66,1543,1545],{"href":357,"rel":1544},[70],"wiring four services into something trustworthy"," was.",[18,1548,1550],{"id":1549},"billing-edge-cases-agencies-gloss-over","Billing Edge Cases Agencies Gloss Over",[11,1552,1553],{},"This is where the gap between \"built your app\" and \"shipped a real product\" shows.",[182,1555,1556,1567,1572],{},[185,1557,1558,1561,1562,1566],{},[28,1559,1560],{},"EU consent law."," German withdrawal-right waivers have to be encoded into the pay button itself. ",[66,1563,1565],{"href":197,"rel":1564},[70],"BoiledPlate ships that consent collection","; most agencies hand you a Stripe SDK and wish you luck.",[185,1568,1569,1571],{},[28,1570,211],{}," What happens when a customer downgrades mid-month? Proration, entitlement changes, the webhook that keeps your database in sync — these need to be handled, not discovered in production.",[185,1573,1574,1577],{},[28,1575,1576],{},"Refund idempotency."," Stripe retries. Your webhook handler must survive duplicate calls without issuing duplicate side effects.",[11,1579,1580,1581,1585],{},"That last one is subtle enough that we wrote a whole post about it: ",[66,1582,1584],{"href":155,"rel":1583},[70],"the GitHub invite is the product, a webhook where some failures throw and some never do",". Getting the retry semantics wrong means either lost deliveries or duplicated ones.",[18,1587,1589],{"id":1588},"ai-agents-and-consistency-the-agentsmd-advantage","AI Agents and Consistency: The AGENTS.md Advantage",[11,1591,1592],{},"Here's a distinction that matters as coding agents become the default. An agency might use Claude once, internally, to move faster. BoiledPlate expects agents to reshape the codebase iteratively — yours, on an ongoing basis.",[11,1594,1595],{},"That only works if the agent doesn't drift. Deterministic patches beat manual code review for agent output because they're repeatable and auditable. And the AGENTS.md contract gives every agent one documented way to access data, so the next session — or the next agent entirely — doesn't hallucinate your schema or invent a second pattern for the same job.",[11,1597,1598],{},"This is what unlocks genuine speed: agents that already know your conventions instead of guessing them.",[18,1600,1602],{"id":1601},"deployment-and-delivery-mechanics","Deployment and Delivery Mechanics",[11,1604,1605],{},"Agencies deliver over Slack and staging links. BoiledPlate delivers over GitHub — instant invite, instant repo. There's no \"wait for the agency to flip the switch\" moment.",[11,1607,1608],{},"In a single setup session, your agent provisions Stripe products and webhooks, a Supabase database with RLS, and Google sign-in. Production-ready in minutes, not weeks of staging validation.",[18,1610,1612],{"id":1611},"what-agencies-do-better-and-when-to-use-them","What Agencies Do Better (and When to Use Them)",[11,1614,1615],{},"Being honest about trade-offs: agencies still beat automation at real design and UX work, at complex domain-specific business logic, and any time you need a human to sit with your team and learn edge cases only your industry has.",[11,1617,1618],{},"If your differentiation is a nuanced interface or a workflow no boilerplate anticipates, a good agency earns its fee. The point isn't that agencies are bad — it's that they're the wrong tool for the plumbing. Use BoiledPlate for the plumbing, agencies for the polish.",[18,1620,1622],{"id":1621},"typescript-seo-and-i18n-as-force-multipliers","TypeScript, SEO, and i18n as Force Multipliers",[11,1624,1625,1626,1629],{},"Small things compound. End-to-end TypeScript strict mode catches integration bugs before they reach production. SEO is baked in — JSON-LD, canonical URLs, ",[33,1627,1628],{},"og:url"," — the details agencies frequently ship broken. A prerendered Markdown blog means nobody has to litigate CMS trade-offs. And four languages ship from day one, so i18n isn't a retrofit later.",[11,1631,1632,1633,1637,1638,1642],{},"We learned some of these the hard way, which is why they're solved now: ",[66,1634,1636],{"href":297,"rel":1635},[70],"our blog once told Google its canonical URL was localhost:3000",", and ",[66,1639,1641],{"href":289,"rel":1640},[70],"a JSON-LD source-order bug returned 200 from curl but 500 in Chrome",". Owning the codebase means you can find and fix these fast, instead of filing a ticket and waiting.",[18,1644,1646],{"id":1645},"the-cost-comparison-boiledplate-vs-retainer-hell","The Cost Comparison: BoiledPlate vs. Retainer Hell",[11,1648,1649],{},"The numbers are stark. €159 one-time with lifetime updates versus $5,000–$15,000 a month. At six months you've saved the cost of a senior developer. You own the code, so you can hire junior devs to maintain it. And because updates arrive as deterministic patches, they don't silently break your customizations.",[18,1651,1653],{"id":1652},"how-to-choose","How to Choose",[182,1655,1656,1662,1668],{},[185,1657,1658,1661],{},[28,1659,1660],{},"BoiledPlate if"," you have a clear idea, solid dev skills, and want shipping speed over hand-holding.",[185,1663,1664,1667],{},[28,1665,1666],{},"Agencies if"," you need design collaboration or domain expertise you genuinely don't have in-house.",[185,1669,1670,1673],{},[28,1671,1672],{},"The hybrid:"," use BoiledPlate as the foundation, hire an agency for the UX layer on top. Three weeks of plumbing you didn't write, plus two weeks of agency design, gets you to market faster than either alone.",[11,1675,1676,1677,1682],{},"The future favors this split. As ",[66,1678,1681],{"href":1679,"rel":1680},"https:\u002F\u002Fwww.anthropic.com\u002Fengineering\u002Fclaude-code-best-practices",[70],"Anthropic's own guidance on agentic coding"," suggests, the winning pattern is humans making decisions and agents executing deterministically. BoiledPlate is built for exactly that — an agent-native starter Claude can reshape iteratively, so your competitive edge is shipping faster because your agent doesn't hallucinate your codebase.",[11,1684,1685],{},"That's the real answer to the \"shipfast agency\" question. You don't have to choose between fast and owned. You can have both.",{"title":445,"searchDepth":446,"depth":446,"links":1687},[1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699],{"id":1426,"depth":449,"text":1427},{"id":1439,"depth":449,"text":1440},{"id":1465,"depth":449,"text":1466},{"id":1481,"depth":449,"text":1482},{"id":1520,"depth":449,"text":1521},{"id":1549,"depth":449,"text":1550},{"id":1588,"depth":449,"text":1589},{"id":1601,"depth":449,"text":1602},{"id":1611,"depth":449,"text":1612},{"id":1621,"depth":449,"text":1622},{"id":1645,"depth":449,"text":1646},{"id":1652,"depth":449,"text":1653},"2026-08-05","Compare hiring a ShipFast agency to build your SaaS vs using agent-native starters. Understand true costs, ownership, and where each approach actually wins.",{},"\u002Fblog\u002Fshipfast-agency-vs-self-serve-automation",{"title":1415,"description":1701},"blog\u002Fshipfast-agency-vs-self-serve-automation",[1707,1708,1709,1710],"SaaS development","agency vs DIY","automation","product launch","foDbuZy7q1MReuB0PX05tqk6N4oy26SIaY6fzYUM0Uo",1786150320290]