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

推荐订阅源

MyScale Blog
MyScale Blog
博客园 - 司徒正美
A
About on SuperTechFans
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
F
Fortinet All Blogs
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
D
Docker
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence
Jina AI
Jina AI
H
Help Net Security
量子位
IT之家
IT之家

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
The Codebase Is the Prompt
Timon Krebs · 2026-06-28 · via DEV Community

The database analogy is usually wrong when people use it to explain AI.

A language model is not a database full of facts, documents, or answers. When you ask it a question, it is not looking up a record and returning the matching row. There is no table called “JavaScript bugs” or “how to design an API” hidden inside the model.

But the analogy is not useless. It is just usually applied at the wrong level.

The prompt is not a key that retrieves a stored answer. It is more like a fuzzy query into a compressed space of learned patterns. The model does not fetch the answer. It reconstructs a plausible continuation from the patterns that the prompt makes relevant.

This matters because people often mentally separate the prompt from the data.

“My instruction is the prompt. The codebase is the material the model works on.”

But the model has no such separation.

In a codebase task, the codebase is the prompt.

The surrounding code conditions the output just as much as the typed request does. The naming, the architecture, the hidden assumptions, the tests, the missing tests, the file layout, the comments, the abstractions, and the inconsistencies all become part of the query.

This became obvious to me after using Fable 5.

I was blown away. I blasted through two Claude Code subscriptions, one personal and one from work, and upgraded to the Max plan almost entirely because of Fable. I had personal projects lying dormant for years, not because I did not care about them, but because I could not find the time and energy to get back into the complexity they required. I had tried earlier models every now and then, asking them to add features or move these projects forward, and every time they failed hard.

With Fable 5, that changed.

It solved multiple problems that I had personally sat with for hours without success. More importantly, it solved them in a way I could understand. It did not just dump code on me. It helped me see the shape of the solution. For a while, it felt almost godlike. I was in heaven. The only thing keeping me from going completely crazy from lack of sleep were the token limits.

So I expanded the experiment. I used it on more personal projects, including multi-year-old projects I had not touched because of time constraints, life, and having small kids. Again, the same thing happened. Old projects started moving. Problems that had felt too expensive to re-enter suddenly became solvable.

But at work, I could not get the same fable boost.

At first, the obvious explanation was process. Maybe I was not committing to the tool in the same way. Maybe strict acceptance criteria, guardrails, review requirements, and company constraints prevented the same flow.

Then came the ban.

That pause gave me time to review what had actually happened. I looked back at code Fable had written for me. I also reviewed code from other developers that had been generated with Fable. The picture became more complicated.

Sometimes Fable had produced excellent code. Sometimes it had solved genuinely difficult problems. But sometimes it had produced bad code with obvious issues.

Eventually, something clicked.

The quality of the output was closely linked to the quality of the codebase it was working with.

That sounds obvious. But the solution is not obvious.

The simple reflex is to say: if the model performs worse in a bad codebase, give it more good code. Give it best practices. Give it clean examples. Give it architecture guidelines. Add counterweights to the prompt so the messy codebase does not dominate the answer.

But this does not help as much as one would hope.

The reason is that good code is local.

In a good codebase, encapsulation and clear interfaces let you understand a function from its signature and a small neighborhood around it. You do not need to read the entire system to safely change one piece. The relevant information is close by. The code compresses well because the same patterns repeat. The model can see the local shape and infer the missing parts.

Bad code is non-local.

A function depends on hidden global state. Behavior changes because of something in a distant file. A method only works if someone remembered to call init() first. A harmless-looking change breaks an unrelated feature because the real dependency is implicit. The important information is not near the code being changed.

This is where LLMs struggle.

The information the model needs to be correct may simply not be in its context window. Worse, neither the user nor the model necessarily knows which distant code is the relevant context to supply. So the model reasons from what it can see, fills the gaps with priors, and produces something confident and wrong.

This is why “just add best practices” often fails.

Best practices are not neutral. They also become part of the query. If you give the model a messy codebase and then add a clean example, you may think you are saying: “Fix this bad code using this good principle.”

But the prompt is saying: “Continue with this pattern.”

Those are different tasks.

The model can get pulled away from the actual problem. It may produce code that looks better in isolation but does not fit the hidden constraints of the system. It may follow the best practice while missing the reason the code became ugly in the first place.

A bad codebase is therefore not merely a hard query against a good prompt.

It is a bad prompt.

You are handing the model a worse input and asking for a better output than the input supports.

This closes the loop back to compression. The very property that makes code bad for humans — irregularity, inconsistency, special cases, high entropy — is the same property that makes it hard for a predictive model to work with. Good code compresses well because it is regular. A language model is, at bottom, a compressor of regularities. So regular code is its home turf, and irregular code is where it is weakest.

The thing that frustrates the human and the thing that defeats the model are one thing.

That is also why in-context learning is often misunderstood. The model is not learning your codebase in the way a developer does. It is not building a durable mental model. It is being temporarily conditioned by whatever fits into the prompt. If the relevant invariants are missing, implicit, or spread across the system, the model cannot reliably infer them just because you gave it more text.

And this also explains context rot.

Context rot is not merely what happens when the context window gets long. It is what happens when the query decays. Old assumptions, abandoned solutions, stale files, half-correct explanations, and irrelevant examples remain in the conversation. The model keeps trying to satisfy all of them because, from its perspective, they are still part of the prompt.

The practical conclusion is not that LLMs are useless on bad codebases.

It is that the fix is usually not a cleverer prompt.

The fix is to supply the non-local context the model cannot see, and to shrink the task until locality holds again. Instead of asking the model to fix the system, ask it to inspect one boundary. Instead of asking it to refactor a tangled module, first ask it to identify the hidden invariants. Instead of giving it generic best practices, give it the specific constraints that make this codebase weird.

The people who get real value from LLMs on bad codebases are often the people who already understand the code well enough to compress the chaos for the model.

The model rewards whoever can make the query sharp.