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

推荐订阅源

D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG
B
Blog
博客园 - Franky
I
InfoQ
A
About on SuperTechFans
博客园_首页
L
LangChain Blog
量子位
腾讯CDC
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
美团技术团队
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
雷峰网
雷峰网
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
G
Google Developers Blog
Last Week in AI
Last Week in AI

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
Why Your Claude-Generated Code Works But Feels Wrong (And...
Panav Mhatre · 2026-06-21 · via DEV Community

You ship the feature. Tests pass. The PR looks clean. But three days later, when you try to extend it, something feels off. The structure doesn't quite fit. You're not sure if a piece of logic belongs where it is. You start second-guessing the naming. You end up rewriting it anyway.

Sound familiar?

This is one of the most common experiences developers have after a few months of shipping with Claude. The code isn't wrong — it runs fine. But it's subtly alien. It doesn't feel like yours.

I want to talk about why this happens and what actually fixes it.


The real problem isn't your prompts

The instinct is to reach for better prompts. More specific requirements. Clearer constraints. And that helps — but it's treating the symptom.

The root cause is usually this: you're handing Claude a task before you have a clear picture of what the output should connect to.

Claude is an extremely capable generator of locally coherent code. Given a well-formed requirement, it will produce something that solves the literal problem. The issue is that "locally coherent" isn't the same as "fits your system."

When you don't bring a clear picture of your existing structure to the session, Claude fills the gap with its best guess. That guess is based on general patterns — which are often good — but they're not your patterns. The code solves the problem you asked about, but makes implicit decisions about naming, structure, error handling, and data flow that you didn't notice until you went to change something.

Over several sessions, these implicit decisions compound. You end up with a codebase where different parts solve similar problems differently, where naming conventions drift, where you're not quite sure what anything "owns." It all works, but it's expensive to reason about.

I think of this as AI-assisted drift — not technical debt in the traditional sense, but architectural incoherence that accumulates when you move fast without bringing your existing context into each session.


What actually helps

Here are three habits that made a concrete difference in the maintainability of my Claude-assisted code:

1. Write a one-paragraph "brief" before each session

Before you type a single prompt, write out: what you're building, what already exists that it needs to connect to, and what you're explicitly NOT changing.

This sounds like overhead. It's actually the opposite — it's the work that prevents you from doing the same thing twice. When you write out the constraints that aren't obvious from the surface request, Claude's output starts fitting into your codebase instead of beside it.

You don't have to share the whole brief every time. Just writing it clarifies your own thinking, which changes how you ask.

2. Ask Claude to summarize what it understood before it writes code

After giving Claude a task, ask: "Before you write anything, tell me what you understood the task to be and what assumptions you're making."

This sounds like it would slow you down. It doesn't — it takes thirty seconds and it surfaces the hidden assumptions before they're baked into 200 lines of code.

The assumptions you want to catch are things like: "I'm going to create a new module for this" (you didn't ask for a new module), or "I'll use a dict here since there's no existing data class" (there is one, in a different file you didn't paste in). These are small decisions that feel obvious to Claude in the moment and that create friction for you six commits later.

3. Treat every AI output as a draft, not a handoff

The posture shift that matters most: Claude's output is a starting point for your thinking, not a finished result.

This doesn't mean you rewrite everything. It means you read it the way you'd read a PR from a junior engineer you trust — with the assumption that it's mostly right but with the responsibility to understand it before you ship it.

The developers who get into trouble with AI-assisted code aren't the ones who use it too much. They're the ones who accept it without engaging. The code works, they move on, and two features later they've built something no one can explain.


The underlying issue: confidence without context

AI-generated code has a subtle property that makes this worse: it's confident-looking by default. The formatting is clean, the naming is reasonable, the structure is plausible. There are no obvious tells that it might be making bad assumptions.

Human-written code tends to show its uncertainty — the comment that says "not sure if this is right," the variable name that reveals confusion, the TODO that signals something was deferred. AI output doesn't do that. It looks finished even when the underlying assumptions are wrong.

This means the normal debugging instinct — "if it looks right, it probably is" — doesn't quite apply. You need to actively interrogate the output, not just visually scan it.

The specific things worth checking in any non-trivial AI output:

  • State and ownership: does this function know more about external state than it should?
  • Error handling: what happens when the thing it assumes is there isn't?
  • Naming conventions: does this match the patterns in the rest of the codebase, or did it invent its own?
  • Implicit dependencies: what would break if you moved this to a different module?

None of this requires being suspicious of Claude. It requires having a clear enough picture of your system to notice when something doesn't fit.


A free resource if you want to go deeper

I put together a starter pack — prompt templates, a shipping checklist, and a workflow structure — specifically for developers who want to ship with Claude without accumulating the kind of invisible mess I described above. The focus is on maintainability and workflow design, not prompt tricks.

It's free, no upsell: Ship With Claude — Starter Pack

It's aimed at indie builders and first-time founders, but the principles apply whether you're solo or on a small team. The core idea is that you should finish a Claude session understanding your codebase better than when you started — not worse.


The goal isn't to use Claude less. It's to use it in a way that leaves you in control of what you're building.

The speed is real. The maintainability tradeoff is also real. You don't have to choose between them — but you do have to be intentional about how you work.