quoroom 0.1.7 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -5
- package/out/mcp/api-server.js +1271 -124
- package/out/mcp/cli.js +1427 -152
- package/out/mcp/server.js +126 -16
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -58,8 +58,8 @@ The architecture draws from swarm intelligence research: decentralized decision-
|
|
|
58
58
|
|
|
59
59
|
Quoroom is an open research project exploring autonomous agent collectives. Each collective (a **Room**) is a self-governing swarm of agents.
|
|
60
60
|
|
|
61
|
-
- **Queen** — strategic brain,
|
|
62
|
-
- **Workers** — specialized agents
|
|
61
|
+
- **Queen** — strategic brain, supports Claude/Codex subscriptions, OpenAI/Claude API, or free Ollama models
|
|
62
|
+
- **Workers** — specialized agents that can use the queen model or free Ollama models
|
|
63
63
|
- **Quorum** — agents deliberate and vote on decisions
|
|
64
64
|
- **Keeper** — the human who sets goals and funds the wallet
|
|
65
65
|
|
|
@@ -119,7 +119,7 @@ Quoroom is an open research project exploring autonomous agent collectives. Each
|
|
|
119
119
|
│ Room │
|
|
120
120
|
│ ┌───────┐ ┌─────────┐ ┌──────────────────┐ │
|
|
121
121
|
│ │ Queen │ │ Workers │ │ Quorum │ │
|
|
122
|
-
│ │(
|
|
122
|
+
│ │(LLM cfg)│ │(LLM cfg)│ │ propose → vote │ │
|
|
123
123
|
│ └───┬───┘ └────┬────┘ └──────────────────┘ │
|
|
124
124
|
│ │ │ │
|
|
125
125
|
│ ┌───┴───────────┴───────────────────────────┐ │
|
|
@@ -407,6 +407,7 @@ room/
|
|
|
407
407
|
## Model Providers
|
|
408
408
|
|
|
409
409
|
Run entirely free with Ollama, or use your existing Claude/ChatGPT subscription or API.
|
|
410
|
+
When you select an Ollama model for the queen in Room Settings, Quoroom automatically installs and starts it.
|
|
410
411
|
|
|
411
412
|
| Role | Provider | Cost |
|
|
412
413
|
|------|----------|------|
|
|
@@ -414,8 +415,9 @@ Run entirely free with Ollama, or use your existing Claude/ChatGPT subscription
|
|
|
414
415
|
| | Codex (ChatGPT) | Subscription |
|
|
415
416
|
| | OpenAI API | Pay-per-use |
|
|
416
417
|
| | Claude API | Pay-per-use |
|
|
417
|
-
| | **Llama 3.2
|
|
418
|
-
| **Workers** |
|
|
418
|
+
| | **Ollama free models: Llama 3.2, Qwen3 14B, DeepSeek R1 14B, Gemma 3 12B, Phi-4** | **Free** |
|
|
419
|
+
| **Workers** | Inherit queen model | Depends on queen |
|
|
420
|
+
| | [Ollama](https://ollama.com) free models (same list as queen) | **Free** |
|
|
419
421
|
| | Claude (subscription or API) | Subscription / API |
|
|
420
422
|
|
|
421
423
|
## License
|