惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
J
Java Code Geeks
月光博客
月光博客
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Jina AI
Jina AI
小众软件
小众软件
U
Unit 42
云风的 BLOG
云风的 BLOG
Stack Overflow Blog
Stack Overflow Blog
雷峰网
雷峰网
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
宝玉的分享
宝玉的分享
B
Blog
C
Check Point Blog
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
量子位
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
AI coding assistants are building the same app 10 million...
Aditya Agarw · 2026-04-28 · via DEV Community

Aditya Agarwal

Every AI coding assistant on the planet is quietly converging on the same architecture. And nobody's talking about what happens when that architecture has a bad day.

Open Claude Code, Cursor, or any AI-powered tool. Ask it to build you a SaaS app. You'll get Next.js, Vercel, Supabase, Tailwind, maybe Prisma. Every single time.

That's not a coincidence. It's a monoculture. And monocultures have a way of collapsing all at once.

The vibecoding assembly line

The "vibecoding" trend made this worse overnight. People prompt their way to a working app without making a single architectural decision themselves. The AI makes every decision for them. And it always makes the same decision.

This isn't about whether Next.js or Supabase are good tools. They're fine. The problem is that millions of apps now share identical dependency trees, identical auth patterns, identical deployment pipelines.

→ Same framework versions
→ Same ORM configurations
→ Same auth libraries wrapping the same providers
→ Same serverless functions on the same infrastructure

Security researchers have already flagged this. When AI-generated codebases all look the same, one CVE doesn't just affect "some apps." It affects the default app.

One CVE to rule them all

Think about the blast radius for a moment. A critical vulnerability in a popular Next.js middleware pattern wouldn't just hit teams who chose that pattern deliberately. It would hit every vibecoded app that inherited it by default.

We've seen supply chain attacks before. Log4j was brutal. But Log4j lived in codebases that were at least architecturally diverse. The apps around it were different shapes and sizes.

Now imagine Log4j, but every app has the same shape. Same entry points. Same data flow. Same deployment target. An attacker doesn't need to figure out how your app works. They already know. 🎯

The AI doesn't know it's doing this

Let me explain — Claude Code and Cursor are not intentionally aiming to foster a monoculture. They're simply going for what's effective. Next.js documentation is awesome. Supabase APIs are neat. Vercel simplifies deployment.

The AI suggests widely-used options because the more popular they are, the more training data there is. The more training data, the better the suggestions. Better suggestions lead to wider adoption, fueling the loop even more.

Truth be told, if you're already on the $20 Claude Pro plan, you're consuming your quota so quickly that you won't really be able to stop and ponder over which architecture would make more sense for your use case. You'll just go with whatever the AI suggested and push ahead. For actual coding work, you'd need a Max plan — let alone for investing time to challenge the defaults.

That's where the problem lies. The economics of AI-assisted coding essentially encourage you to embrace the defaults. And the defaults are all identical.

What would actually help

I’m not saying everyone should go build apps in Haskell out of spite. But a few things would make this less dangerous.

→ AI tools should randomize or rotate their default suggestions based on project context
→ Security teams should start modeling "AI-default blast radius" as a real threat vector
→ If you're vibecoding, at least read the dependency list before you ship
→ Framework maintainers need to understand they're now critical infrastructure whether they signed up for it or not

The boring truth is that architectural diversity is a security feature. It always has been. We just never had a machine capable of eliminating it at scale before. 😅

This isn't a Next.js problem

I want to be clear — swap Next.js for any framework. The issue isn’t the specific stack. It’s the convergence pattern itself.

If every AI tool defaulted to Rails and Heroku, I’d be writing the same article with different nouns. The risk is homogeneity at a scale we’ve never had to think about.

We went from “everyone copies the same tutorial” to “a machine generates the same app millions of times” in about eighteen months. That’s a fundamentally different threat model.

The next big supply chain attack won't need to be clever. It'll just need to target the default. 🔓

So here's what I'm wondering — if you're using AI coding tools daily, when was the last time you actually chose your stack instead of accepting whatever the AI suggested?