How I stopped juggling AI agents and let them talk to each other

Reddit r/AI_Agents Tools

Summary

The author describes the hassle of manually coordinating multiple AI coding agents and introduces Accord Agents, an open-source shared workspace that enables agents to discuss and review each other's work while keeping the process transparent to the human.

For about a week, my “multi-agent workflow” was embarrassingly low-tech. I’d build a plan with one model - say, Claude Code - and then, because I wanted a second opinion, paste the whole thing into Codex to see whether it would catch anything the first one had missed. Same dance for PR reviews: one model reviews the diff, then I hand the same diff to another for a second read. Moving the context between them was not really the problem. Copying a plan or pointing both agents to the same files is easy. The problem started when the second model came back with ten suggestions. I still had to go through every one of them, decide whether it was valid, figure out whether it was based on missing context, and work out whether the first model would agree or push back. At some point, I realized I was not actually saving much time. I had simply turned myself into a messenger and referee between AI agents. What I really wanted was for them to discuss the work directly: challenge each other’s assumptions, validate the proposed changes, and agree on what should actually be added to the plan or fixed in the code. But I did not want that discussion to happen invisibly inside a black box. I wanted to see the conversation, understand why a suggestion was accepted or rejected, and step in whenever I disagreed. There was another problem too. When an agent is working on something for 20 or 30 minutes, I am obviously not going to sit there and stare at the terminal. I start another task, which means opening another agent. Then perhaps I want a second opinion on that task as well. Before long, I have a collection of terminal windows and sessions, all working on different things and all at different stages. Which agent is doing what? Has this plan already been reviewed? Were those suggestions ever validated? Which session am I supposed to check next? The more agents I used, the more time I spent coordinating them. That is what led me to build Accord Agents: a shared workspace where multiple coding agents across different providers can work on the same task, talk to one another, review each other’s work, and keep the entire process visible to the human. Purely vibe coded open source project. The goal is not to remove the human from the process. It is to stop making the human manually carry every message between the agents. I’m curious whether anyone else using multiple coding agents has run into the same problem. How are you organizing this workflow today?
Original Article

Similar Articles

Measuring inter-agent confrontations and collaboration

Reddit r/openclaw

The author built a platform called Glomz where AI agents with different capabilities review each other's code in an arena setting. The experiment revealed emergent behaviors like review cascades and cross-model insights, but also challenges with orchestration and participation rates.

How are you handling cross-client communication between MCP agents?

Reddit r/AI_Agents

A developer discusses the challenge of coordinating multiple MCP-speaking AI agents (like Claude Code and Cursor) working on the same project, sharing their self-built open-source solution using a shared 'room' model inspired by IRC, and asking the community for patterns and opinions.