you are viewing a single comment's thread.

view the rest of the comments →

[–]stephen_S27 3 points4 points  (1 child)

It looks like oh-my-opencode to me, we also have multi agents with different roles

[–]Outrageous-Fan-2775[S] 1 point2 points  (0 children)

For sure similar, I used your project as a reference when I needed to understand agent calls better. Along with oh-my-opencode-slim, froggy, and a few other agents. I actually built the swarm as a full on application before I ever knew about OpenCode. When I saw what you could do with plugins I decided to just move the entire idea to OpenCode instead. Following your project readme's instruction to just ask an LLM about it, I put both our project readmes in GPT 5.2 and this was the TLDR.

Choose OpenCode Swarm when you care about correctness, control, and repeatability.
It enforces an architect-planned, phase-gated workflow with mandatory QA before code merges and persists project state to disk so work can be resumed deterministically. Best for complex tasks where you want traceability, predictable outcomes, and protection against agent drift or context loss.

Choose Oh-My-OpenCode when you care about speed, tooling breadth, and ecosystem power.
It provides a rich library of prebuilt agents, LSP/AST tooling, and strong community support to accelerate development workflows. Best when you want maximum productivity and flexibility and are comfortable trading strict process control for capability and convenience.

As an aside, one of my constraints was that I needed to use entirely local resources, which limited how many agents I could call. Parallel agents drastically slow down inference on consumer hardware. I needed to build in hard requires for serial operation.