Prevalent themes in the discussion
-
LLM‑generated code is often unreadable or overly complex
Users repeatedly complain that models default to opaque Python/shell scripts instead of using the provided edit tools, making review painful.“I've observed the same thing where the new models want to run obscene bash commands or python scripts which are completely unreadable and utilise every option flag that exists. It's impossible to review. These commands are less readable than regex.” – Gigachad
“Astra is indeed the pinnacle of ‘black box slop’. … the code sometimes is indistinguishable from Brainfuck when writing things like GPU shaders.” – meowface
“I noticed that too so I appended to Claude Code’s system prompt a reminder to use the standard read/write tools, but since Claude Code switched to default auto‑mode, I’ve seen it imply that the auto‑mode tooling encourages the use of bash‑only commands (sed, python, etc).” – chambored -
Trade‑offs between speed, cost, and quality; newer models can be slower and more expensive
Many note that while the latest models are powerful, they often consume far more tokens, spawn subagents, rerun test suites, and produce over‑engineered solutions.“gpt‑6‑astra … 2.5× base in subscription … tends to spawn subagents … and then it tends to run full test suites over an over again … yesterday I assigned it a task … astra ran for more than 6 hours and still wasn’t done.” – AmazinTurtle
“I found it to be less annoying in that regard then sol … But yeah, it's really expensive, at least in relative terms.” – on_the_train
“Ironically I burned out Fable usage early this week because of Astra using it to run inane full codebase reviews over one line changes …” – petesergeant -
Analogies to compilers and the concept of “Neijuan” (involution)
Commenters compare LLMs to compilers, arguing that the focus on token efficiency leads to ever‑more complex prompts without real gains in output quality—a form of involution.“I’m more and more convinced that all of AI engineering is Neijuan (内卷, meaning curl inwards). … The English term for Neijuan is ‘Involution’ …” – specproc
“Also known has the Red Queen's Race.” – veqq
“The tool output doesn't need to look nice, or to have any spatial structure … LLMs are perfectly content with tightly packed unprettified JSON, or other forms of Perl line noise.” – TeMPOraL
“People keep saying that 'models are just compilers, and I don't see you complsining about compilers'. Which is such a bullshit argument.” – troupo (and others echoing the sentiment) -
Success depends on precise prompting, clear context, and human oversight
Several contributors stress that giving LLMs detailed specifications, limiting scope, and reviewing output are essential to obtain useful results.“Early lesson I learned from AI engineering was - there is no substitute to giving a groomed epic to an agent. Instead of simply saying 'implement themes in my product' you need to be specific, in fact more specific than usual.” – gps372
“Nowadays, it doesn't feel like that to me … I still need some understanding to verify the proposals …” – TeMPOraL
“you need solid requirements, clear context and thoughtful human oversight primarily during planning but also during verification” – _usefulcat
“If you define what you want in typescript by updating existing typescript wordage, you get what you want exactly as specified, with minimal token cost and no ip theft.” – matt3210