|
|
|
|
|
by joshuaisaact
140 days ago
|
|
This feels like massively overengineering something very simple. Agents are stateless functions with a limited heap (context window) that degrades in quality as it fills. Once you see it that way, the whole swarm paradigm is just function scoping and memory management cosplaying as an org chart: Agent = function Role = scope constraints Context window = local memory Shared state file = global state Orchestration = control flow The solution isn't assigning human-like roles to stateless functions. It's shared state (a markdown file) and clear constraints. |
|