← PDC Dev Studio
Theory

If AI writes all the code, someone still has to read it.

Coding literacy stopped being a typing skill and became a comprehension skill. That is the whole reason PDC Dev Studio ships a real editor and a console instead of handing you a picture of your software.

Grant the premise

In his July 2026 interview with The Economist, Elon Musk put it about as bluntly as it can be put:

"For software engineering, we already have a situation where AI is better than at least 90% of humans at writing software. And it really is getting to the point where it'll be better than 99%. And then it'll get to the point where there's just no way to compete. It'll get to what I call Stockfish level." — Elon Musk, interview with The Economist, 23 July 20261

Grant all of it. Assume he is right, and early. Assume that within a few years no human writes production code by hand for any reason other than pleasure.

That changes who types. It does not change who has to ask for the thing, judge whether the thing is right, and answer for it when it is not.

The two jobs that never left

The ask. A model produces what you requested, and only approximately that. The difference between a system that works and one that quietly does the wrong thing is almost always in the request: an unstated constraint, a case nobody named, a word that meant one thing to you and another to the model. Writing a good ask requires knowing what is being built well enough to describe its edges. That is a literacy problem, not a typing problem.

The judgment. Something has to decide whether the output is acceptable — correct, safe, maintainable, honest about its own limits. If the same class of system that wrote the code is also the only thing evaluating it, there is no independent check anywhere in the loop. A human who cannot read the output cannot supply one.

  1. The ask Describing the thing precisely enough that its edges are named. Human
  2. The writing Turning that description into working code, fast. AI
  3. The judgment Deciding whether what came back is correct, safe, and honest about its limits. Human
← and back to the ask, until it is right
The middle step is the one that changed. The two on either side of it did not — and both of them require being able to read what the middle step produced.

Machines got better at producing code. Nothing got better at deciding whether the code deserves to run.

Literacy is not typing

Coding literacy used to mean you could write the loop. It now means something both broader and more useful:

None of that requires you to write the loop. All of it requires you to be able to read one.

The alternative is a screen you cannot audit

Here is the failure mode worth naming now, while it is still avoidable. If nobody reads the code, we do not get software — we get renders. Interactive pictures of a system, produced by a process no one on the receiving end can open.

Every question that actually matters then becomes unanswerable in principle:

What you are handed
the line literacy lets you cross
What it actually does
Both people receive the same software. The difference is whether anyone on their side of the transaction can open the second panel — and every question worth asking about a system lives down there, not up in the render.

Someone who cannot read the software they commissioned is not empowered by it. They are a customer of something no one on their side of the transaction can open — and that is a worse position than not having it, because it comes with the confidence of ownership.

So the studio ships an editor and a console

Not because you have to write it. Because you have to be able to open it, run it, and watch it fail.

PDC Dev Studio

The workspace is the reading room

  • A live code editor — the actual files, not a summary of them. Python and JavaScript run right in the browser, with nothing to install, so the gap between "the AI wrote this" and "I watched this run" is one click wide.
  • A console — output and errors in plain view. A stack trace is the most honest thing a computer ever tells you, and it is worth learning to read one.
  • Chat next to both — so "what does line 40 do, and what happens if the file is empty" is a question you ask about code sitting in front of you, rather than a leap of faith.

This is also why the studio does not hide the machinery behind a single "make it for me" button. A button like that optimises for the first five minutes and costs you every minute after. The version that respects your time is the one that lets you look.

The same argument as the pipeline

The companion piece to this one argues that education is a mechanism — lecture, seminar, group project, essay, test — and that AI belongs in the harness around it rather than in any of its chairs. Coding literacy is the same argument aimed at one subject.

The test stage of that pipeline was never about whether you could produce the artifact. It was about whether you understood it well enough to defend it alone. Handing a student a program they cannot read is handing them a finished essay: it clears the assignment and skips the development the assignment existed to produce.

Tokens are energy, not intelligence. So is generated code. The intelligence is still the person who can tell whether it is any good.

AI writing all the code does not make software literacy obsolete. It makes it the only part of the job left, which is a strange way of saying it has never mattered more.

Also in Theory Education is a pipeline. AI belongs in the harness. Five stages, each teaching something the others cannot — and what happened the last time the pipeline went digital without one.

Sources

  1. Elon Musk, interview with Zanny Minton Beddoes, The Economist, 23 July 2026 — full transcript. Quotation condensed from consecutive remarks in the software-engineering passage; ellipses omitted for readability.