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

推荐订阅源

IT之家
IT之家
腾讯CDC
博客园 - Franky
S
SegmentFault 最新的问题
美团技术团队
阮一峰的网络日志
阮一峰的网络日志
J
Java Code Geeks
Y
Y Combinator Blog
Engineering at Meta
Engineering at Meta
Microsoft Security Blog
Microsoft Security Blog
MongoDB | Blog
MongoDB | Blog
I
InfoQ
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
B
Blog RSS Feed
博客园 - 叶小钗
博客园_首页
有赞技术团队
有赞技术团队
雷峰网
雷峰网
量子位
小众软件
小众软件
月光博客
月光博客
U
Unit 42
D
DataBreaches.Net

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 Wrote My Landing Page 3 Weeks Ago. I Have No Idea What...
Backrun · 2026-06-15 · via DEV Community

Three weeks ago I asked Claude to build a landing page.

It took about a minute. The output was clean, structured, looked exactly right. I deployed it, sent the link to someone, moved on Yesterday a client asked me to change the CTA button color.

I opened the file.
I had no idea where anything was.

Not because the code was bad. The code was fine. But I had never read it. I watched it appear in a chat window, decided it looked right, and shipped it. The mental model I would normally build while writing code never formed because I never wrote the code.

I was looking at a stranger's work.

This is different from working with someone else's code

When you inherit a codebase from another developer, there are fingerprints. Variable names that reflect how that person thinks. Comments that explain unusual decisions. An architecture that reveals assumptions made at the start of the project.

You can reverse-engineer the intent. It takes time but the trail is there.
AI-generated code has no fingerprints.

It is technically correct, consistently structured, and completely neutral. There is no personality in it, no history, no "why did they do it this way" to chase down. It optimized for correctness, not for the person who would have to touch it three weeks later.

That person is you. And you have nothing to hold onto.

The cognitive ownership problem

There is research in learning science about the difference between recognition and recall.

Recognition is seeing something and knowing you have seen it before. Recall is being able to reconstruct it from memory without a prompt.

When AI writes your code and you review it briefly before shipping, you get recognition. The code looks familiar because you watched it appear. But you never built the deeper understanding that enables recall.

Three weeks later, recognition has faded too. You open the file cold.
Developers who write their own code build recall naturally. The act of writing forces you to make decisions, which forces you to understand the tradeoffs, which builds the mental model you need to come back to the code later.

AI skips that process entirely. Fast at generation. Zero at mental model transfer.

What this costs you

The time savings from AI generation are real and measurable. A landing page that would take 2 hours takes 45 seconds.

The costs are invisible until they are not.
Every time something breaks in code you did not write, you start from zero. No mental model to navigate by. No memory of why things are structured the way they are. Just a file full of correct-looking code that could be hiding the problem anywhere.

One developer described this exactly in a thread I was reading recently: when QA reports come in on AI-generated code, the team feeds the bugs back to the AI because nobody has the mental model to debug manually. The AI fixes the bugs it created. Sometimes correctly. Sometimes not. The team is no longer debugging. They are managing a system they do not understand.
That is not a productivity gain. That is a productivity loan with compounding interest.

The non-technical version of this problem

For developers, cognitive ownership is a real but manageable problem. You can slow down, read the output carefully, ask the AI to explain its decisions, build the mental model deliberately even if the code was generated.

For non-technical users, the problem is structural.
A marketer who generated a landing page with Claude was never going to build a mental model of the HTML. That was never the point. They needed a page, Claude gave them a page, they shipped the page.

But when something breaks, or when they need to change the offer, or when a client asks why the button does not work on mobile, they have nothing. No understanding of what they shipped. No way to fix it themselves. No path forward except going back to Claude and hoping the next output is better.

The only review step available to them is visual. Does it look right? Does it work on my phone? Is the layout broken anywhere I can see?
That review step is the only ownership they can realistically have over AI-generated HTML. And most of the time nobody builds that step into the workflow.

The one thing that actually helps

I am not going to argue that non-technical users should learn to read HTML. That is not the solution.
The solution is building the review step they can actually do into the workflow before the page goes live.

Visual review. Real screen sizes. Desktop, tablet, mobile. Before the URL exists and the client has already seen the broken version.

That is the design principle behind HTML Deployer. The extension sits inside the Claude or ChatGPT tab where the conversation happened. It loads the generated HTML automatically. It shows you exactly what the page looks like on every screen size before you deploy. Then one click and it is live on Netlify, GitHub Pages, FTP, or your own server.

The cognitive ownership problem does not fully go away. But the most expensive version of it, shipping something broken because nobody looked at it on a real screen, goes away completely.

The question worth sitting with Every AI tool that generates something asks you to make a decision before you fully understand what you are deciding about.

The faster the generation, the less time you spend with the output before shipping it.

That speed is genuinely valuable. But it has a cost that shows up later, quietly, when something breaks and you realize you are looking at a stranger's work with no map and no memory.

The question is not whether to use AI to generate. The question is what you put between generation and ship to make sure you actually own what you are about to send into the world.

Has anyone found a workflow that genuinely solves the cognitive ownership problem with AI-generated code? Not just "review it carefully" but something structural that forces understanding before shipping. Curious what people have actually tried.