4/14/2026 at 2:10:24 AM
I see an objective difference in speed between Team account and my personal max 20 and a subjective difference in quality.On my personal account projects get 90% and then get stuck on a bug and then I have to hand the project over to codex to fix. Then codex usually is like “this feature was stubbed out and not connected at all”. Like wtf is going on with Claude. It gets so much complicated stuff right and then completely whiffs the main details.
On my teams premium account, I can complete things fine and fast.
by iterateoften
4/14/2026 at 3:20:19 AM
I have a similar issue where it ignores step by step instructions. I have a detailed step by step playbook and QA checklist to follow, but it will make up its own checklist with fewer items on it and say it's finished the job! I think about half my time is spent getting the very clever code it has written out of large singular files and into an organised structure which was specced from the beginning.by bash-j
4/14/2026 at 1:37:13 PM
The distributed systems framing is right but it undersells the problem. In a traditional distributed system, each node runs code a human wrote and can reason about. When something fails, you trace the call chain and find the bug.With multi-agent development, each agent generates code that no single human fully understands. The failure mode isn't a consensus problem or a network partition. It's a comprehension partition. Five agents each wrote part of the system. None of them hold a mental model of the whole. Neither does the human who orchestrated them. When it breaks, there is no call chain to trace because there was never a unified understanding of what the system was supposed to do at that level of specificity.
by bustah
4/14/2026 at 4:16:09 AM
Yeah, just the other day I had asked it to do some work and then merge it into a develop branch."Done, merged to develop".
I test, feature not there.
"?" Claude: "Yeah, there's nothing for that feature in develop"
"I'm confused. You said above you merged it into develop." Claude: "I did say that but I didn't do it. Should I do it now?".
Me, thinking, "That depends, will you actually do it now?"
by FireBeyond