Team of Agents Automatically Looping Orchestration System
Building a team of agents with an automatically looping orchestration system in OpenCode How to combine multiple AI agents, potentially multiple models, perhaps even from different providers, into one collaborative recursive coding pipeline. Original source: https://intrepidis.neocities.org/blog/post/team-of-agents NOTE: The original source has since been updated to include better features. I'm not going to update this post further. Hence it would be better to follow that link now. 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 m...