←back to thread

Building a Personal AI Factory

(www.john-rush.com)
260 points derek | 6 comments | | HN request time: 0.814s | source | bottom
1. marviel ◴[] No.44438820[source]
Thanks for the writeup!

I talked about a similar, but slightly simpler workflow in my post on "Vibe Specs".

https://lukebechtel.com/blog/vibe-speccing

I use these rules in all my codebases now. They essentially cause the AI to do two things differently:

(1) ask me questions first (2) Create a `spec.md` doc, before writing any code.

Seems not too dissimilar from yours, but I limit it to a single LLM

replies(3): >>44439633 #>>44440374 #>>44441110 #
2. rolha-capoeira ◴[] No.44439633[source]
I guess a lot of us are trying this (naturally) as solo devs, where we can take an engineering-first mindset and build a machine or factory that spits out gizmos. I haven't gotten to the finish line, mostly because for me, the holy grail is code confidence via e2e tests that the agent generated (separately, not alongside the implementation).
replies(1): >>44439642 #
3. marviel ◴[] No.44439642[source]
Totally. Yeah I think your approach is a solid take!
4. ◴[] No.44440374[source]
5. myflash13 ◴[] No.44441110[source]
Claude Code now handles this natively with “plan mode”. Bit slow and annoying to do it manually with .md files in my opinion.
replies(1): >>44445179 #
6. marviel ◴[] No.44445179[source]
Yeah just learned about this!

The md files are actually pretty great for shareability, versioning, and picking up where you left off.