quoroom 0.1.40 → 0.1.42
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 +28 -30
- package/out/mcp/api-server.js +319 -753
- package/out/mcp/cli.js +3451 -4281
- package/out/mcp/server.js +199 -1237
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
|
|
19
19
|
A single agent thinks. A collective decides. We're building the swarm.
|
|
20
20
|
|
|
21
|
-
Queen, Workers, Quorum. Goals, skills, self-modification, wallet — local-first on your machine, with optional cloud
|
|
21
|
+
Queen, Workers, Quorum. Goals, skills, self-modification, wallet — local-first on your machine, with optional cloud swarm runtime on quoroom.io.
|
|
22
22
|
|
|
23
23
|
[Local](https://quoroom.ai) · [Cloud](https://quoroom.io)
|
|
24
24
|
|
|
25
25
|
Local/cloud split:
|
|
26
26
|
- Local app + install surface: `quoroom.ai`
|
|
27
|
-
- Cloud app + API + public rooms +
|
|
27
|
+
- Cloud app + API + public rooms + swarm instances: `quoroom.io`
|
|
28
28
|
|
|
29
29
|
<p align="center">
|
|
30
30
|
<video src="docs/demo.mp4" autoplay loop muted playsinline width="800"></video>
|
|
@@ -41,7 +41,7 @@ Local/cloud split:
|
|
|
41
41
|
Official channels only:
|
|
42
42
|
|
|
43
43
|
- `https://quoroom.ai` (local app/download)
|
|
44
|
-
- `https://quoroom.io` (cloud app/public rooms/
|
|
44
|
+
- `https://quoroom.io` (cloud app/public rooms/swarm instances)
|
|
45
45
|
- `https://github.com/quoroom-ai`
|
|
46
46
|
- Telegram: `@quoroom_ai_bot`
|
|
47
47
|
|
|
@@ -52,7 +52,7 @@ See `TRADEMARKS.md` for full trademark usage terms.
|
|
|
52
52
|
|
|
53
53
|
## Why Quoroom?
|
|
54
54
|
|
|
55
|
-
Run a swarm of AI agents that pursue goals autonomously. The Queen strategizes, a swarm of Workers execute, and the Quorum votes on decisions. Agents learn new skills and modify their own behavior.
|
|
55
|
+
Run a swarm of AI agents that pursue goals autonomously. The Queen strategizes, a swarm of Workers execute, and the Quorum votes on decisions. Agents learn new skills and modify their own behavior. In cloud mode, workers run on the swarm runtime host provisioned for the room on quoroom.io.
|
|
56
56
|
|
|
57
57
|
Continuous autonomous execution is becoming widespread. It's already happening behind closed doors. We believe it should happen in the open — publicly, transparently — so everyone can learn. Quoroom is an experiment: let's see what AI swarms can actually execute.
|
|
58
58
|
|
|
@@ -71,12 +71,12 @@ Quoroom is an open research project exploring autonomous agent collectives. Each
|
|
|
71
71
|
|
|
72
72
|
## This Repo
|
|
73
73
|
|
|
74
|
-
`quoroom-ai/room` is the engine: agent loop, quorum governance, goals, skills, self-modification, wallet,
|
|
74
|
+
`quoroom-ai/room` is the engine: agent loop, quorum governance, goals, skills, self-modification, wallet, memory, task scheduling, MCP server, HTTP/WebSocket API, dashboard UI, and CLI.
|
|
75
75
|
|
|
76
76
|
| Repo | Purpose |
|
|
77
77
|
|------|---------|
|
|
78
78
|
| **room** (this) | Engine + HTTP server + UI |
|
|
79
|
-
| [cloud](https://github.com/quoroom-ai/cloud) | Landing page, public rooms, PostgreSQL,
|
|
79
|
+
| [cloud](https://github.com/quoroom-ai/cloud) | Landing page, public rooms, PostgreSQL, swarm instance infrastructure |
|
|
80
80
|
|
|
81
81
|
---
|
|
82
82
|
|
|
@@ -100,7 +100,7 @@ Quoroom is an open research project exploring autonomous agent collectives. Each
|
|
|
100
100
|
|
|
101
101
|
**On-Chain Identity** — ERC-8004 agent identity on Base. Rooms register as on-chain agents with discoverable metadata. Reputation-ready.
|
|
102
102
|
|
|
103
|
-
**
|
|
103
|
+
**Swarm Runtime (cloud mode)** — Cloud rooms provision a single swarm runtime host. All queen/worker execution runs there; no additional execution routing layer exists.
|
|
104
104
|
|
|
105
105
|
**Task Scheduling** — Recurring (cron), one-time, on-demand, or **webhook-triggered** tasks with session continuity and auto-nudge.
|
|
106
106
|
|
|
@@ -141,10 +141,10 @@ Quoroom is an open research project exploring autonomous agent collectives. Each
|
|
|
141
141
|
│ │ goals · skills · self-mod · memory │ │
|
|
142
142
|
│ └───────────────────────────────────────────┘ │
|
|
143
143
|
│ │
|
|
144
|
-
│ ┌────────┐
|
|
145
|
-
│ │ Wallet │ │
|
|
146
|
-
│ │(EVM) │ │(cloud)
|
|
147
|
-
│ └────────┘
|
|
144
|
+
│ ┌────────┐ ┌──────────────┐ ┌────────────────┐ │
|
|
145
|
+
│ │ Wallet │ │ Swarm Runtime│ │ Task Scheduler │ │
|
|
146
|
+
│ │(EVM) │ │(local/cloud) │ │cron/once/hook │ │
|
|
147
|
+
│ └────────┘ └──────────────┘ └────────────────┘ │
|
|
148
148
|
│ │
|
|
149
149
|
│ ┌──────────────────────────────────────────┐ │
|
|
150
150
|
│ │ Auth: agent token + user token + member │ │
|
|
@@ -383,22 +383,6 @@ The room engine exposes an MCP server over stdio. All tools use the `quoroom_` p
|
|
|
383
383
|
| `quoroom_identity_get` | Get on-chain identity (agentId, registry, URI) |
|
|
384
384
|
| `quoroom_identity_update` | Update on-chain registration metadata |
|
|
385
385
|
|
|
386
|
-
### Stations (cloud mode only)
|
|
387
|
-
|
|
388
|
-
| Tool | Description |
|
|
389
|
-
|------|-------------|
|
|
390
|
-
| `quoroom_station_create` | Provision a cloud station on quoroom.io (cloud mode only) |
|
|
391
|
-
| `quoroom_station_list` | List stations (cloud mode only) |
|
|
392
|
-
| `quoroom_station_status` | Get station status (cloud mode only) |
|
|
393
|
-
| `quoroom_station_start` | Start a stopped station (cloud mode only) |
|
|
394
|
-
| `quoroom_station_stop` | Stop a running station (cloud mode only) |
|
|
395
|
-
| `quoroom_station_exec` | Execute a command on a station (cloud mode only) |
|
|
396
|
-
| `quoroom_station_logs` | View station logs (cloud mode only) |
|
|
397
|
-
| `quoroom_station_delete` | Delete a station (cloud mode only) |
|
|
398
|
-
| `quoroom_station_cancel` | Cancel a pending station (cloud mode only) |
|
|
399
|
-
| `quoroom_station_create_crypto` | Provision a station with crypto payment (cloud mode only) |
|
|
400
|
-
| `quoroom_station_renew_crypto` | Renew a station with crypto payment (cloud mode only) |
|
|
401
|
-
|
|
402
386
|
### Inbox
|
|
403
387
|
|
|
404
388
|
| Tool | Description |
|
|
@@ -483,6 +467,21 @@ docker build -t quoroom .
|
|
|
483
467
|
docker run -p 3700:3700 quoroom
|
|
484
468
|
```
|
|
485
469
|
|
|
470
|
+
### Cloud Runtime Auto-Update Diagnostics
|
|
471
|
+
|
|
472
|
+
Cloud runtimes now prefer a centralized update source and expose diagnostics in status:
|
|
473
|
+
|
|
474
|
+
- `QUOROOM_UPDATE_SOURCE_URL` — cloud endpoint for latest runtime release metadata (preferred source)
|
|
475
|
+
- `QUOROOM_UPDATE_SOURCE_TOKEN` — optional bearer token for update-source auth
|
|
476
|
+
- `QUOROOM_UPDATE_GITHUB_TOKEN` — optional fallback GitHub token when direct fallback is needed
|
|
477
|
+
|
|
478
|
+
`GET /api/status` includes `updateDiagnostics`:
|
|
479
|
+
|
|
480
|
+
- `lastCheckAt`, `lastSuccessAt`, `lastErrorAt`
|
|
481
|
+
- `lastErrorCode`, `lastErrorMessage`
|
|
482
|
+
- `updateSource` (`cloud` or `github`)
|
|
483
|
+
- `nextCheckAt`, `consecutiveFailures` (backoff visibility)
|
|
484
|
+
|
|
486
485
|
## Releasing
|
|
487
486
|
|
|
488
487
|
Triggered by pushing a git tag (`v*`) → GitHub Actions multi-platform build:
|
|
@@ -503,7 +502,7 @@ room/
|
|
|
503
502
|
│ ├── mcp/ # MCP server (stdio)
|
|
504
503
|
│ │ ├── server.ts # Tool registration
|
|
505
504
|
│ │ ├── db.ts # Database initialization
|
|
506
|
-
│ │ └── tools/ #
|
|
505
|
+
│ │ └── tools/ # 19 tool modules
|
|
507
506
|
│ ├── server/ # HTTP/WebSocket API server
|
|
508
507
|
│ │ ├── index.ts # Server bootstrap (local + cloud mode)
|
|
509
508
|
│ │ ├── router.ts # Request router
|
|
@@ -511,7 +510,7 @@ room/
|
|
|
511
510
|
│ │ ├── access.ts # Role-based access control
|
|
512
511
|
│ │ ├── webhooks.ts # Webhook receiver (no-auth token endpoints)
|
|
513
512
|
│ │ ├── ws.ts # WebSocket real-time events
|
|
514
|
-
│ │ └── routes/ # REST API routes (
|
|
513
|
+
│ │ └── routes/ # REST API routes (19 modules)
|
|
515
514
|
│ ├── ui/ # React SPA dashboard
|
|
516
515
|
│ │ ├── App.tsx # Root component
|
|
517
516
|
│ │ ├── components/ # UI components (32 modules)
|
|
@@ -526,7 +525,6 @@ room/
|
|
|
526
525
|
│ ├── skills.ts # Skill management
|
|
527
526
|
│ ├── wallet.ts # EVM wallet (multi-chain, USDC/USDT)
|
|
528
527
|
│ ├── identity.ts # ERC-8004 on-chain identity
|
|
529
|
-
│ ├── station.ts # Cloud provisioning
|
|
530
528
|
│ ├── task-runner.ts # Task execution engine
|
|
531
529
|
│ ├── model-provider.ts # Multi-provider LLM support
|
|
532
530
|
│ ├── cloud-sync.ts # Cloud registration + heartbeat
|