Multi-Agent Auto-Looping Orchestration System
Building a multiple agent automatically looping orchestration system in OpenCode (Original source: https://intrepidis.neocities.org/blog/post/mixture-of-agents ) How to mix multiple AI agents, multi-model (not necessarily multi-modal) even from different providers, into one collaborative recursive coding pipeline. The problem Currently, there isn’t a single model that does everything well. Gemini Flash is fast and cheap at code generation but shakier on deep reasoning. Claude Opus nails architecture but is expensive for common chores. DeepSeek V4 Pro sits in a sweet spot, though it varies by task type. I wanted a code harness where I could issue a high-level prompt (like “design and implement a plugin system”) and have it automatically execute a structured, multi-stage workflow. Instead of a single model cannoning off in an unforeseen direction, I wanted an autonomous, self-correcting handoff chain. A specialized architect starts with the technical constraints, a dedicated bu...