Earlier quoted context omitted.
I've found the opposite to be true when building this out with LangGraph. While the subagent contexts are cleaner, the orchestration overhead usually ends up costing more. You burn a surprising amount of tokens just summarizing state and passing it between the supervisor and workers. The coordination tax is real.
Task sizing is important. You can address this by including guidance in the CLAUDE.md around that ie. give it heuristics to use to figure out how to size tasks. Mine includes some heuristics and T shirt sizing methodology. Works great!
Claude Code's new hidden feature: Swarms
61–70 of 351 posts
Re: Claude Code's new hidden feature: Swarms
#62I'm a fan of AI coding tools but the trend of adding ever more autonomy to agents confuses me. The rate at which a person running these tools can review and comprehend the output properly is basically reached with just a single thread with a human in the loop. Which implies that this is not intended to be used in a setting where people will be reading the code. Does that... Actually work for anyone? My experience so…
Re: Claude Code's new hidden feature: Swarms
#63Earlier quoted context omitted.
Swarm is actually bee terminology
Swarm is actually human terminology I believe bees call it "bzz bzzt *clockwise dance* *wiggle*"
Re: Claude Code's new hidden feature: Swarms
#64> You're not talking to an AI coder anymore. You're talking to a team lead. The lead doesn't write code - it plans, delegates, and synthesizes. Even 90 word tweets are now too long for these people to write without using AI, apparently.
I wonder how much 'listening' to an LLM all day affects one's own prose? Mimicry is in the genes…
Re: Claude Code's new hidden feature: Swarms
#65Re: Claude Code's new hidden feature: Swarms
#66Some would argue there’s no point reviewing the code, just test the implementation and if it works, it works.
I still am kind of nervous doing this in critical projects.
Anyone just YOLO code for projects that’s not meant to be one time, but fully intend to have to be supported for a long time? What are learnings after 3-6 months of supporting in production?
Re: Claude Code's new hidden feature: Swarms
#67> You're not talking to an AI coder anymore. You're talking to a team lead. The lead doesn't write code - it plans, delegates, and synthesizes. Even 90 word tweets are now too long for these people to write without using AI, apparently.
I wonder how much 'listening' to an LLM all day affects one's own prose? Mimicry is in the genes…
Re: Claude Code's new hidden feature: Swarms
#68I'm a fan of AI coding tools but the trend of adding ever more autonomy to agents confuses me. The rate at which a person running these tools can review and comprehend the output properly is basically reached with just a single thread with a human in the loop. Which implies that this is not intended to be used in a setting where people will be reading the code. Does that... Actually work for anyone? My experience so…
That's what you're missing -- the key point is, you don't review and comprehend the output! Instead, you run the program and then issue prompts like this (example from simonw): "fix in and get it to compile" [0]. And I'm not ragging on this at all, this is the future of software development.
[0] https://gisthost.github.io/?9696da6882cb6596be6a9d5196e8a7a5...
Re: Claude Code's new hidden feature: Swarms
#69The problem I’ve been having is that when Claude generates copious amounts of code, it makes it way harder to review than small snippets one at a time. Some would argue there’s no point reviewing the code, just test the implementation and if it works, it works. I still am kind of nervous doing this in critical projects. Anyone just YOLO code for projects that’s not meant to be one time, but fully intend to have to be…
Re: Claude Code's new hidden feature: Swarms
#70The problem I’ve been having is that when Claude generates copious amounts of code, it makes it way harder to review than small snippets one at a time. Some would argue there’s no point reviewing the code, just test the implementation and if it works, it works. I still am kind of nervous doing this in critical projects. Anyone just YOLO code for projects that’s not meant to be one time, but fully intend to have to be…