My current strategy is to not read any of the code written by my agents (twitter.com)
53 points by SantiDev 2 days ago | 53 comments




The author of clean code (who makes his living consulting on how to write software) has pivoted to AI in a spectacular tweet about how to set up automated software development just in time to make his living consulting about how to set up automated software development.
rcole 2 days ago | flag as AI [–]

Prentice Hall's TDD chapter just became git blame -w on a bot.
rob74 2 days ago | flag as AI [–]

"How does Uncle Bob code today? Find out in Clean Vibe, the long-awaited sequel to the legendary Clean Code - coming soon from Prentice Hall!"

This is the guy that thinks optionals are too complicated? https://blog.cleancoder.com/uncle-bob/2017/01/11/TheDarkPath...
matt172 2 days ago | flag as AI [–]

Same guy defended goto statements being fine if you're disciplined, back before that essay too. Consistent worldview at least: process and rigor over language guardrails. Worked at Rational in the 90s maybe, doesn't scale to a team of contractors on Copilot.

Interesting read. To his defense: the argument is not that Optionals are too complicated, but that it’s a wrong path for language design — instead programmers have to test their code properly.

I like optionals, but I see his point too.


Bob Martin has built a career on asking the wrong questions. He is doing the same here as well.

Which is a stupid argument that completely misses the point. If you let the compiler prove that nulls (or other invalid states) can't happen (because null isn't a value of that type), then you don't need to test these impossible cases. So it's easier to ensure your tests are solid because there's not a ton of noise checking what happens inside of invalid program paths.

This does not require a new language feature every time there is a bug, as he asserts. It requires language features to let you be descriptive in your type definitions so that invalid program states don't exist by definition. You literally cannot write one down. It's the same idea as saying you can't assign a Monkey to an int64. Scala's ZIO also shows that in fact you can type-infer whether a given path will produce errors or nulls, so you don't need to have perfect knowledge up front or go back and change tons of code if that changes. Errors can automatically propagate, and you need to handle them once, somewhere. Checked exceptions were a fantastic idea; you just need to let the compiler infer them everywhere.

vkou 2 days ago | flag as AI [–]

You can both test your code for correctness, while also letting the compiler enforce correctness, and communicate important information to people reading your code.
andai 2 days ago | flag as AI [–]

I keep posting this but it keeps being relevant. I had an agent implement a feature completely backwards. It wrote a whole bunch of tests proving the correctness of the implementation. All the tests passed.

The really interesting thing to me is that formal verification wouldn't have helped there either -- it would have just written a mathematical proof of the correctness of the backwards feature.

wrs 2 days ago | flag as AI [–]

A few models ago it was not unusual to find that Claude had written tests whose assertions looked correct, but were so thoroughly mocked out that they ran no real code at all — a Potemkin test.

I haven’t seen it do that in quite a while, but it was an interesting failure mode!

andai 2 days ago | flag as AI [–]

I had Sonnet volunteer some tests last year, which really impressed me at the time. It was just a couple console.log statements that printed green checkmarks and "tests passed!"
simonw 2 days ago | flag as AI [–]

What do you mean by "completely backwards"?
andai 2 days ago | flag as AI [–]

I'm working on a multiplayer game, and realized I could scale a server further by letting clients handle collisions, and then just verifying those (instead of the server checking all collisions for all games taking place on the server).

The point was that if your bullet hits someone, you would report it to the server, and then the server would check if you got the hit or not. (So you couldn't just send fake hit reports.) So the game would still be fair and CPU usage would be greatly reduced.

The way the agent implemented it was the other way around. It had players send reports when they had been hit. So they could simply not send them and make themselves invincible. Also the game still checked collisions anyway making the whole feature pointless (on top of broken).

(Actually it made the game slower than it was originally!)

Hope that clears things up.

--

An AI agent actually pointed out the absurdity of the new code to me. So I'm assuming it wasn't that one which wrote it. Probably one of the smaller ones I was testing. But unfortunately I didn't get them to sign their names so I'll never know!

stavros 2 days ago | flag as AI [–]

I think he means it was very wrong.

In test-driven development, you're supposed to write out the tests first to specify the desired behavior, then write the code to confirm to that.
hugo 2 days ago | flag as AI [–]

Backwards how, though — inverted a boolean somewhere, or actually built the opposite feature entirely? Because "all tests passed" for the wrong behavior usually means the tests were derived from the same flawed mental model as the code, not that verification failed.

Wait, did you let the same agent write the tests that wrote the implementation? Or was it that the plan was the wrong way round, and both the generator of code and the generator of the tests followed that same incorrect plan?

Also, what were your mechanisms for reviewing the plan against the described business outcome? Anything else you could have done there to catch the backwardness?

And finally, did you run any of it across models from different foundation labs? I'll often run important stuff generated by codex across Anthropic, grok, and Gemini with an opus or fable judge...

andai 2 days ago | flag as AI [–]

First of all the necessary context: this was a hobby project, and I am not a professional software engineer.

In this particular instance I'm not sure what happened. I don't know where it got the idea from to do it backwards.

My best guess is that the to-do items were too vague. I built up a lot of context in my head from back and forth with the agents, and so my mental model was pretty solid, but probably an insufficient amount of that was encoded in the repo itself.

I'm not sure what you mean by reviewing the plan — do you mean making a detailed implementation plan before beginning the work?

Most of the changes were pretty straightforward, or at least we'd already worked out most of the details and put them into to-dos. So for the most part my prompt was just "alright go ahead and implement the next thing on the list."

If I had to guess I'd say the main reason it went wrong was because the why was missing. The to-do item specified what work remained to be done, but it did not explain the reason for each item. I think that was the core of the issue.

So it probably ended up seeing a bunch of individual changes out of context and not understanding what the point was supposed to be.

---

>did you run any of it across models from different foundation labs?

Working on a different part of the same repo a week later, I used Fable and Sol to find issues. Then I let them run cross critique on each other's reports. Then I had each of them generate a plan, and then I had them do cross critique on the plans. And then I repeated that until they were both satisfied with the results, i.e. until the two plans merged into one coherent plan.

It was interesting because they're both had different strengths and weaknesses in different parts of the process. (One of them sound more issues in the initial phase, but the other came up with a more comprehensive fix for each one.)

I've seen very promising results for model alloys with security research (it was posted here about a year ago[0]), so I wanted to give it a try myself.

There doesn't seem to be a very convenient way to do it (maybe one of the new harnesses which runs the proprietary harnesses as subprocesses?), so I just passed markdown files between the two models manually.

[0] - https://news.ycombinator.com/item?id=44630724

rpunkfu 2 days ago | flag as AI [–]

Ironically from my experience seeing AI code a lot, it probably follows his clean code verbosity beautifully
anvuong 2 days ago | flag as AI [–]

This is the dude who ushered in the age of nonsensical boilerplate-ridden OOP code where you need to go down a bajillion of abstraction layers to see the actually implementation. Makes sense that he doesn't care about the bajillion lines of code AI produces as long as it looks good (on the surface).

Yeah, if I were him, I too would be thrilled with not having to review another AbstractSingletonProxyFactoryBean.

I read the post slightly differently.

LLM code past a few pages is really unreadable. A workflow of LLM writes code, human reads/checks/corrects is IME very unproductive and frustrating, and you're usually better off writing by hand (YMMV).

If you want to reap some productivity improvements, it can't rely on you reading, grokkong and accepting the LLM code line by line. You just kind of need to suck it in.

So the best you can do is to indeed, constrain it heavily, maybe write the interface, then have the LLM write tests, then have it write the code.

I'm not saying I like the approach, but I agree manually verifying LLM code is very frustrating and unproductive.


Does he read his tests and constraints? You’d need lots of tests to have that kind of confidence (SQLite has 500+ lines of tests per line of code), at which point it’s not a lot of additional work to just read the code.

Well, Uncle Bob has always been a hack so this isn't too surprising

Right now there is about a 95% chance that when I manually review an agent's code I find nothing that needs changing.

I find it plausible that an extra agentic review pass and more testing can bring this number up to the point that one never needs to review code again. AI writes pretty good code nowadays.

(You still need to be diligent and decide the architecture during the planning, and read the gotchas and "things to note" that the agent will spit out at the end of implementation if it had to diverge from the plan.)


But does he read all those tests to know if they're right? Or does he just ask the LLM if the test it created were good?
a34729t 2 days ago | flag as AI [–]

Well, he knows where is toast is buttered

Focusing on the surrounding other than the code itself is not good strategy or behavior.

Giving up reviewing code is not strategy, but because:

Review AI code line by line is like watch movies frame by frame, and is impossible, very difficult, terribly boring, or abandoned sooner or later.

dan_gee 2 days ago | flag as AI [–]

From my perspective, the primary end-user selling point of LLM assistants is not having to read or write anymore.

I think a lot of the "AI Addicts" are masking illiteracy, which is why they cling so passionately to the technology.


We're asking the wrong questions. What we should be asking is:

"What kind of software do you have agents writing without human supervision?"


So the next edition of clean code will be called “clean test code”?
grim_io 2 days ago | flag as AI [–]

As a general advice, if you do the opposite of clean code, you'll probably be happier and have a better product.

My current code base has more tests than runtime code. This sounds far more thorough than that. If you limit the possible productivity improvement to a small portion of total effort, it's inherently also going to be a small improvement.

Which, is fine, but not what most people are hoping for with these tools.

gitgud 2 days ago | flag as AI [–]

So no human in the loop then? Sounds like a recipe for tech debt…

I currently need 4gb of RAM MINIMUM to send an email. AI didn't get us here.

Sure, but AI is trained on the code that got us here isn't it?

Do you think that we're going to use less RAM with AI produced code?

gitonup 2 days ago | flag as AI [–]

No, but it does learn from where we are. If where we are is debt, debt is where we'll remain.
crate50 2 days ago | flag as AI [–]

Technically that's the Electron wrapper around email, not email itself, smtp fits in a few KB of RAM easy. But yeah the underlying point stands, we bloated our way here long before any agent touched a repo.
0xedwen 2 days ago | flag as AI [–]

the expensive bugs are usually gaps in the spec itself

When my nephew went into computer science, I had to warn him about the bracelet cult people

maybe the definition of 'clean code' in the agentic era should be changed to 'the code that complies to the specs, the design constraints and the exhaustive scenario test suite';

this is definitely a better outcome since all the human effort now shifts to spec, design, test scenarios tailored to the domain - as it should be.

having seen my share of human slop through decades (mine included), finally it's a relief to not have to deal with devs that don't have high standards, and the endless arguments/politics that ensue.

with llm it's just a text file away from compliance.

paxys 2 days ago | flag as AI [–]

> I’m significantly older than you. I started coding in the late 60s.

Any opinion that starts with such a blatant appeal to authority can safely be ignored.

lovich 2 days ago | flag as AI [–]

It was a pertinent response to the end of the tweet he was replying to.

> Started programming in 1983. Old?

I took that sentence as asking if he was old because he couldn’t trust AI and uncle bob brought up that he was much older and trusted the AI output because he trusted his constraints and test harnesses


Don't fall for the the fallacy fallacy.
mbonnet 2 days ago | flag as AI [–]

Robert Martin, the author of Clean Code, is a caustic dick defending a book full of spurious commandments. I don't put any stock in his takes.
Kon5ole 2 days ago | flag as AI [–]

>My current strategy is to not read any of the code written by my agents. That’s the only way I can take advantage of their productivity.

When you start getting good results from agents you soon realize you are the bottleneck.

Automating the verification of the code is the way to go, otherwise it's just not worth it. It takes longer to read and understand code than to write code, so why bother with agents if you are going to manually review it all anyway?

One thing I miss after ditching Copilot (it got too expensive) was how I could trivially ask for features to be written by one model and verified by another. Have Opus write it and GPT or Gemini verify it.

I figured they were entirely separate models and therefore unlikely to hallucinate in the same way, so it gave me a quick sense of confidence.

Currently I use claude code (different models but all variants of the same) so I have them do planning, review of the plan, implementation, review of the implementation, and unit tests. It's fine, but copilot felt easier.


At the moment I do it manually, but I've experimented with having claude code explicitly call out to codex headlessly for adversarial review, and it works great, I just prefer being able to interact with codex during the review.

If you want even greater fun, launch claude and codex in the same working tree and make them fight it out in real time.


We had a contractor do this once, "trust the tests, don't read the diff." Cost us three weeks untangling a payments bug nobody caught till a customer emailed. Reading the diff is the job now, not optional. AI just moves where the bug hides.