tool
Baro
Baro
A code orchestrator built on mozaik, cited by JigJoy as the production proof of the reactive-agent model. Lives at baro.rs.
What It Demonstrates
Baro runs ~10 specialized participants — planner, executors, reviewer, fixer, librarian, auditor, and others — all joined to a single AgenticEnvironment and reacting to each other’s events concurrently. It models a collaborative team rather than a sequential single-agent pipeline, making it the reference implementation of the agent-swarms pattern.
Why It Matters Here
It’s the existence proof that the reactive-agents / no-central-controller approach scales past toy examples to a real multi-role workflow. Useful as a design reference if kulify ever builds a TypeScript-native swarm (vs the Python langgraph-multi-agent-patterns approach used elsewhere).
See also
- mozaik — the framework Baro is built on
- agent-swarms — the pattern it implements