Hacker News new | ask | show | jobs
by ShayNehmad 149 days ago
Cool stuff. Multi agent orch seems cool but isn't running the agent at the top of a monorepo a good solve?
1 comments

a. not everyone is using a monorepo :) b. It's I think the difference between 2 SME vs a Fullstack engineer.

personally - and maybe I'm biased, I prefer the expert approach.

To add to this - even in a monorepo, a single agent hitting a 200k+ line codebase gets slow and loses focus.

The multi-agent approach lets you scope each agent to what it knows best. Backend agent stays in /api, knows the DB schema cold. Frontend agent lives in /web, knows the component library.

When they need to coordinate, they message each other with just the relevant context - not the entire codebase.

It's also useful for parallel work. Both agents can be coding simultaneously instead of one waiting for the other.