I implenented an end-to-end description-to-code application generator. User comes in and creates the project description. I validate if it contains all the information I need and if so, I start the automatic development process. First I build list of tasks and then I ask LLM (gpt4o) to generate code diff for each task. I support retries and tasks rethinking on errors. It works just fine for 90% of cases.
Yet, diff generation is something that I’d like to offload to some external service that is best at it. Like Cursor.
+1 for this, it can be great to automatically mantain auto-generated files, in my case i generate mocks from open-api schemas and i have to insert the same prompt over and over again for every api we introduce, instead i would like to just run a cli command, perhaps some pipeline may run it for me and auto push the changes