Comment Re:I tried (Score 1) 77
I tried hard in the last 2 months: I bought Claude, came up with a project I thought seemed reasonable: JS-based rich-text editor with plugin system.
There's your problem: Javascript.
I'm actually serious. LLMs in their current incarnation need a lot of guardrails, and I think they do much better with a very strict, statically-typed language.
If I did have to write Javascript and I wanted to use an LLM I would focus hardcore on extremely thorough and extensive unit tests, because that's the only way to provide the necessary guardrails. And I would closely scrutinize all test changes made... or maybe just mark the test code as read-only so the AI can't modify the tests.
Also you should be very picky about architecture, and have the LLM implement in smallish chunks, thoroughly vetting its output each time.
Is this a lot of work? Yes! It's a lot less work than doing it all yourself, but if you just give the AI a high-level problem description and turn it loose, you're probably going to end up with crap. Even worse in a language like JS that encourages crap anyway.