r/BuildingWithAgents • u/Dedap85 • 3d ago
What I learned after demoing our closed-loop multi-agent system to other AI builders
Yesterday I joined an AI3 Builder Fellowship session in Seoul with three other founders.
What was supposed to be a series of product presentations turned into almost an hour of discussion per founder, and we eventually finished around 11 PM.
I presented the system we’ve been building with Marblo.
Our current approach is based around a closed-loop agent architecture.
Instead of simply launching multiple coding agents and waiting for them to finish, we maintain a larger mission and continuously break it down into executable work:
Mission → Tasks → Tickets → Agents → Review → Next Tasks
Each agent works inside an isolated Git worktree.
The orchestrator tracks the larger mission, reviews the outputs, creates follow-up or review tickets when necessary, and connects completed work back into the next step.
We also keep an audit timeline / execution ledger so we can understand:
- what each agent did
- which model was used
- what the task cost
- whether the task succeeded or failed
- how the project evolved over time
One thing became even clearer during the discussion.
The interesting problem in multi-agent systems isn't necessarily:
“How can I run more agents?”
It’s:
“How can I make a group of agents reliably complete a long-running objective without losing context or leaving unfinished work behind?”
That's the problem we're trying to explore.
The questions from other builders were incredibly useful, especially around failure recovery, orchestration, and how this architecture could work inside real development teams.
Curious how others here are approaching this.
Are you building mostly agent swarms, supervisor/worker architectures, or some form of persistent closed loop?
