Hacker News new | ask | show | jobs
by ksynwa 334 days ago
Can someone explain to me like I'm from 2020 what these multiple agents are for? Is it something like starting five different Claude Code sessions in parallel to fix five different issues? Or are they collaborating in some capacity?
2 comments

Five different issues. They don't (yet) collaborate. However, Claude Code does let the model farm out subtasks to "sub agents" which is basically just forking the chat history in order to manage context explosion. Claude often does this to find things in the codebase - it effectively instructs a sub-instance of itself to work out where something is, the sub-conversation terminates with an answer and the main context window only contains the answer. It can also do this in parallel.

So, it's kinda both. Terragon works on separate tasks in parallel, Claude Code farms out subtasks and sometimes also in parallel.

> Is it something like starting five different Claude Code sessions in parallel to fix five different issues?

yes