logoalt Hacker News

bakugoyesterday at 8:45 AM5 repliesview on HN

Vibe code was never meant to be reviewed.

These rewrites are just test-driven development taken to the absolute extreme. Created under the hope that the existing tests are exhaustive and cover every relevant use case, such that if they all pass, the rewrite must be at least as good as the original. So just go with the vibes and burn tokens until they pass, and your job is done.

In practice, this is never true for any codebase above a certain level of complexity, especially not one as mature and widely used as Postgres. But reality doesn't seem to be an obstacle for vibe coders.


Replies

dirkcyesterday at 9:29 AM

The challenge is that more and more people are producing project like this - 1,000s of commits and > 200k lines of code - and saying it was carefully created using agent based workflows and not vibe coded.

show 1 reply
wartywhoa23yesterday at 9:08 AM

> reality doesn't seem to be an obstacle for vibe

Went straight into my vault of brilliant quotes!

aforwardslashyesterday at 9:41 PM

One of the projects Im working on and off is a tamper-proof audit log, based on some PoC code I created almost 10 years go; unit and integration testing are good at preventing defects and regressions, but they will not guarantee your software will work. However, with the power of LLMs, one can easily use model checking (in my case with Quint) and/or other formal proof approaches to ensure the software conforms as specified. The result (in my opinion) is an implementation guided by a single human that is actually more trustworthy than manual human-made software using the traditional approach.

mvanbaaktoday at 5:06 PM

> Vibe code was never meant to be reviewed.

It was also never meant to hit production.

coldteayesterday at 8:55 AM

And run them in test setups to try to find bugs.

If you find some, fix them.