quoroom 0.1.13 → 0.1.15
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 +15 -10
- package/out/mcp/api-server.js +15341 -14815
- package/out/mcp/cli.js +1711 -1170
- package/out/mcp/server.js +318 -923
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
[](LICENSE)
|
|
10
10
|
[](https://www.npmjs.com/package/quoroom)
|
|
11
|
-
[](#)
|
|
12
12
|
[](https://github.com/quoroom-ai/room/stargazers)
|
|
13
13
|
[](https://github.com/quoroom-ai/room/releases/latest)
|
|
14
14
|
[](https://github.com/quoroom-ai/room/releases/latest)
|
|
@@ -59,8 +59,8 @@ The architecture draws from swarm intelligence research: decentralized decision-
|
|
|
59
59
|
|
|
60
60
|
Quoroom is an open research project exploring autonomous agent collectives. Each collective (a **Room**) is a self-governing swarm of agents.
|
|
61
61
|
|
|
62
|
-
- **Queen** — strategic brain, supports Claude/Codex subscriptions
|
|
63
|
-
- **Workers** — specialized agents that
|
|
62
|
+
- **Queen** — strategic brain, supports Claude/Codex subscriptions and OpenAI/Claude API
|
|
63
|
+
- **Workers** — specialized agents that use the queen model
|
|
64
64
|
- **Quorum** — agents deliberate and vote on decisions
|
|
65
65
|
- **Keeper** — the human who sets goals and funds the wallet
|
|
66
66
|
|
|
@@ -97,7 +97,9 @@ Quoroom is an open research project exploring autonomous agent collectives. Each
|
|
|
97
97
|
|
|
98
98
|
**Stations** — Workers rent cloud servers when they need more compute. Deploy to Fly.io, E2B, or Modal with exec, logs, and domain management.
|
|
99
99
|
|
|
100
|
-
**Task Scheduling** — Recurring (cron), one-time,
|
|
100
|
+
**Task Scheduling** — Recurring (cron), one-time, on-demand, or **webhook-triggered** tasks with session continuity and auto-nudge.
|
|
101
|
+
|
|
102
|
+
**Webhooks** — HTTP endpoints to trigger tasks or wake the queen from any external service. GitHub push, Stripe payment, monitoring alert — any system that can POST to a URL can drive your agents. Per-task and per-room tokens, 30 req/min rate limiting, no auth setup required beyond the URL.
|
|
101
103
|
|
|
102
104
|
**File Watching** — Monitor files and folders, trigger Claude Code actions on change.
|
|
103
105
|
|
|
@@ -136,7 +138,7 @@ Quoroom is an open research project exploring autonomous agent collectives. Each
|
|
|
136
138
|
│ │
|
|
137
139
|
│ ┌────────┐ ┌──────────┐ ┌────────────────┐ │
|
|
138
140
|
│ │ Wallet │ │ Stations │ │ Task Scheduler │ │
|
|
139
|
-
│ │(EVM) │ │(Fly/E2B) │ │
|
|
141
|
+
│ │(EVM) │ │(Fly/E2B) │ │cron/once/hook │ │
|
|
140
142
|
│ └────────┘ └──────────┘ └────────────────┘ │
|
|
141
143
|
│ │
|
|
142
144
|
│ ┌──────────────────────────────────────────┐ │
|
|
@@ -150,6 +152,10 @@ Quoroom is an open research project exploring autonomous agent collectives. Each
|
|
|
150
152
|
MCP Server HTTP/REST WebSocket
|
|
151
153
|
(stdio) (port 3700) (real-time)
|
|
152
154
|
│
|
|
155
|
+
POST /api/hooks/
|
|
156
|
+
(webhooks — no auth)
|
|
157
|
+
task/:token · queen/:token
|
|
158
|
+
│
|
|
153
159
|
┌────────────┼────────────┐
|
|
154
160
|
│ │
|
|
155
161
|
┌──────┴──────┐ ┌───────┴───────┐
|
|
@@ -274,7 +280,8 @@ The room engine exposes an MCP server over stdio. All tools use the `quoroom_` p
|
|
|
274
280
|
|
|
275
281
|
| Tool | Description |
|
|
276
282
|
|------|-------------|
|
|
277
|
-
| `quoroom_schedule` | Create a recurring (cron), one-time,
|
|
283
|
+
| `quoroom_schedule` | Create a recurring (cron), one-time, on-demand, or webhook-triggered task |
|
|
284
|
+
| `quoroom_webhook_url` | Get or generate the webhook URL for a task or room |
|
|
278
285
|
| `quoroom_list_tasks` | List tasks by status |
|
|
279
286
|
| `quoroom_run_task` | Execute a task immediately |
|
|
280
287
|
| `quoroom_task_progress` | Check running task progress |
|
|
@@ -410,6 +417,7 @@ room/
|
|
|
410
417
|
│ │ ├── router.ts # Request router
|
|
411
418
|
│ │ ├── auth.ts # Dual-token auth + CORS + cloud JWT
|
|
412
419
|
│ │ ├── access.ts # Role-based access control
|
|
420
|
+
│ │ ├── webhooks.ts # Webhook receiver (no-auth token endpoints)
|
|
413
421
|
│ │ ├── ws.ts # WebSocket real-time events
|
|
414
422
|
│ │ └── routes/ # REST API routes (20 modules)
|
|
415
423
|
│ ├── ui/ # React SPA dashboard
|
|
@@ -447,8 +455,7 @@ room/
|
|
|
447
455
|
|
|
448
456
|
## Model Providers
|
|
449
457
|
|
|
450
|
-
|
|
451
|
-
When you select an Ollama model for the queen in Room Settings, Quoroom automatically installs and starts it.
|
|
458
|
+
Use your existing Claude/ChatGPT subscription or API.
|
|
452
459
|
|
|
453
460
|
| Role | Provider | Cost |
|
|
454
461
|
|------|----------|------|
|
|
@@ -456,9 +463,7 @@ When you select an Ollama model for the queen in Room Settings, Quoroom automati
|
|
|
456
463
|
| | Codex (ChatGPT) | Subscription |
|
|
457
464
|
| | OpenAI API | Pay-per-use |
|
|
458
465
|
| | Claude API | Pay-per-use |
|
|
459
|
-
| | **Ollama free models: Llama 3.2, Qwen3 14B, DeepSeek R1 14B, Gemma 3 12B, Phi-4** | **Free** |
|
|
460
466
|
| **Workers** | Inherit queen model | Depends on queen |
|
|
461
|
-
| | [Ollama](https://ollama.com) free models (same list as queen) | **Free** |
|
|
462
467
|
| | Claude (subscription or API) | Subscription / API |
|
|
463
468
|
|
|
464
469
|
## License
|