Can someone please help me with a solution to keeping multiple agents on the same page within a project? I am running 3 agents to create an app and I think I need a ringleader that knows the ultimate goal of the project and helps to keep the 3 agents on task and on the same page pushing towards the goal. Like an overseer agent. Right now, that is me and I am not doing a great job. Hopefully I explained that well. Thanks in advance. Jesse
I’d separate this into two layers: shared project state and conversational coordination. The “ringleader” agent should not just chat with the other agents; it should maintain a compact source of truth: goal, constraints, current plan, completed work, blockers, and next action per agent. Then each worker agent reads from that state before acting and writes back a short update after acting. Without that shared state, agents tend to sound coordinated while slowly drifting apart.