▲ | extraN 2 days ago | |
I’ve been using tools like Cline and Roo-Code quite a bit, and the idea of rethinking the core stack/UX from scratch resonates a lot. The agent workflow and devex feel like the hardest problems to get right, so I’m curious how Multi approaches context management and long-running tasks compared to the others. Excited to see it open-sourced and will definitely give it a spin. | ||
▲ | invisibleink 2 days ago | parent [-] | |
> I’ve been using tools like Cline and Roo-Code quite a bit, and the idea of rethinking the core stack/UX from scratch resonates a lot. Would love to learn more about your experience with cline. We spent quite some trying to add multi agent capabilities and improve the overall ux/devex of Cline (and its clone Roo) to make it more intutive for developers. we found that its stack is not built for these capabilities, and the codebase was not as stable as we would like it to be. it required a major rewrite, at that point being another cline clone made no sense to us. > The agent workflow and devex feel like the hardest problems to get right yes, AI coding agents are probably the most complex agents out there. our approach comes from actor model, where each agent manages its own event-loop. we found this is incredible robust way to build specialized agents that interact with one another within multi. Too early to say but > Excited to see it open-sourced and will definitely give it a spin. thanks. still brewing but will let you know. appreciate your feedback. |