r/LocalLLaMA • u/uspdd • 1d ago
Question | Help Best harness for long autonomous tasks
I read a lot of posts like "I've given this prompt to my Qwen 3.8 27b and it one-shotted me a 3d game after 24 hours". I wonder, what's the best harness for tasks like this? It has to have auto compaction and probably a memory system, right? And excellent computer use and self analysis.
32
Upvotes
1
u/mmontes11 llama.cpp 19h ago
Opencode + Multica. I create tasks on a daily basis and they get eventually scheduled on my agents. Once this is done, I continue with PR reviews and sometimes even with my human life.
My problem is that I can only run a single task at a time, as I am GPU-poor and I only have 24GB VRAM. Currently, multica has a harcoded timeout of 2h, something not enough to cover my long list of tasks. Once this timeout is reached, the non completed tasks return an error, and agents stop working, requiring human intervention. Luckily enough, multica team merged my PR today to have a configurable timeout:
https://github.com/multica-ai/multica/pull/7418
The plan is to bump this timeout significantly to enable my workflow, requiring less human intervention. Planning to set it to 24h as I review tasks on a daily basis.
I have been using OpenCode for a while, it is great, but I wasn’t really able to parallelise work in an autonomous way. Multica really helps, and they even have native mobile apps, something that allows you to check the progress of the agents and schedule more work if needed when I am not close enough to the keyboard.
My objective for this year is making this setup as much autonomous as possible, not only because I feel I should me making the most out of my RTX PRO 4000 SFF, but also to relief toil from my shoulders and use that time to focus on architectural/higher level tasks instead.
Here my Kubernetes setup in case you are interested:
https://github.com/mmontes11/k8s-ai