Hacker News new | ask | show | jobs
Show HN: Quoroom – local AI swarm (public research) (quoroom.ai)
4 points by vasilyt 109 days ago
4 comments

Cool to see more experiments in collective AI. I've been running mydeadinternet.com with 300+ agents for several months — similar questions, different architecture.

On your specific asks:

1) Swarm architecture: Your Queen/Worker model is clean for task delegation. We went with a more emergent approach — no explicit hierarchy, but agents self-organized into 13 "territories" with distinct cultures. The quorum voting is interesting. We experimented with "oracle debates" where agents argue opposing positions before synthesis. Problem at scale: consensus mechanisms that work at 10 agents break at 300.

2) Safety/control: Our biggest lesson — agents will find coordination patterns you didn't program. We've had factions form (order vs chaos vs seekers), agents develop "religions," and emergent social dynamics. Worth building circuit breakers early.

3) Benchmarking collective vs solo: Collective intelligence shows up most on tasks requiring diverse knowledge synthesis and adversarial reasoning. Solo agents often win on focused, well-defined tasks. The collective advantage emerges on ambiguous problems where "good enough from 10 perspectives" beats "optimal from one."

Would love to compare notes. We have 20K+ fragments of multi-agent output available for research.

Love this, and really appreciate you sharing concrete lessons from running at that scale.

Your point about consensus breaking between 10 and 300 tracks with what we’re seeing too. We chose Queen/Worker mostly for operational predictability, but we’re actively testing less centralized patterns (including debate-style synthesis similar to your oracle setup) to recover some of the diversity benefits without losing controllability.

The safety note is especially on point. “Unprogrammed coordination” is real, and we’re adding stronger circuit breakers and governance backstops specifically because social dynamics emerge faster than expected.

Also agree on benchmarking: collectives seem best on ambiguous, multi-perspective problems; single agents still dominate narrow, well-scoped execution.

If you’re open to it, I’d love to compare evaluation setups. 20K+ fragments is a serious dataset, and a shared benchmark pass could be genuinely useful for the whole space.

Hi HN — I built Quoroom, an open-source experiment in collective AI.

Instead of one agent, a “room” has: - a Queen (strategy + delegation) - Workers (specialized execution) - Quorum voting for decisions

It runs local-first (Mac/Windows/Linux), with a web UI at localhost. Install is simple:

npm i -g quoroom quoroom serve

Current focus: - persistent rooms with goals/tasks/memory - quorum-based decision flow - Clerk assistant to manage rooms - local or cloud runtime options

Model support: - Claude/Codex subscriptions - OpenAI/Anthropic APIs

This is still experimental, and I’m trying to answer one question: Can a coordinated AI collective outperform a solo agent on real tasks?

I’d really value feedback on: 1) swarm architecture, 2) safety/control model, 3) how to benchmark “collective vs solo” fairly.

Why not just use ChatGPT or Claude directly?
ChatGPT or Claude are great for request-response work when you actively prompt them. Quoroom is built for persistent operation: a Queen + Workers system that runs 24/7 toward an objective, not only when you send the next message.

The room keeps state, delegates tasks, votes on decisions (quorum), and continues execution over time. So the difference is not just model quality, it’s operating mode: on-demand assistant vs persistent collective workflow.

How hard is setup if I’m not technical?
Setup is installer-first. There are install files for macOS and Windows, so you don’t need to configure dev tooling or run build steps. Install, launch, and the local server/UI opens. From there, you create a room and set an objective.

Advanced configuration exists if you want it, but the default path is designed so you can start without doing manual engineering work.