Software is built by teams. Yet most AI automation tools treat workflow building as a solo activity — one person, one canvas, one browser tab. We saw this as fundamentally broken. If AI agents are going to be production infrastructure, building them needs to be a team sport.
So we built real-time multiplayer collaboration into the AACFlow workflow editor. Not as a bolt-on. As a core architectural decision.
The Vision: Google Docs for Agents
A support team lead needs to build a triage workflow. A senior engineer needs to review the error handling. A product manager needs to verify the escalation logic. In most tools, this means: build → export → send Slack message → review → import → edit → repeat. Hours of friction for minutes of actual work.
In AACFlow, they all open the same workflow — simultaneously. The lead drags blocks. The engineer adjusts retry config. The PM adds a comment on a branch point. They see each other's cursors. They see changes in real-time. They ship faster because they build together.
The Architecture: Socket.IO + Redis
Under the hood, the collaboration system runs on two battle-tested technologies:
Socket.IO handles the WebSocket connections. Every user connected to the same workflow canvas joins a Socket.IO room. When one user makes a change — moves a node, adds a connection, edits a parameter — the change is broadcast to every other user in that room. No polling. No refresh. Instant.



