quoroom 0.1.2 → 0.1.6
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 +19 -0
- package/out/mcp/api-server.js +741 -226
- package/out/mcp/cli.js +1327 -1000
- package/out/mcp/server.js +578 -623
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -28,6 +28,23 @@ Queen, Workers, Quorum. Goals, skills, self-modification, wallet, stations — s
|
|
|
28
28
|
|
|
29
29
|
---
|
|
30
30
|
|
|
31
|
+
## Trademark and Anti-Scam Notice
|
|
32
|
+
|
|
33
|
+
- Code in this repository is MIT-licensed, but **Quoroom name/logo/branding are not licensed** under MIT.
|
|
34
|
+
- Quoroom does **not** endorse third-party tokens using our name.
|
|
35
|
+
- Quoroom will never ask for wallet seed phrases or private keys.
|
|
36
|
+
|
|
37
|
+
Official channels only:
|
|
38
|
+
|
|
39
|
+
- `https://quoroom.ai`
|
|
40
|
+
- `https://app.quoroom.ai`
|
|
41
|
+
- `https://github.com/quoroom-ai`
|
|
42
|
+
|
|
43
|
+
If you see impersonation or scam activity, report it to `hello@quoroom.ai`.
|
|
44
|
+
See `TRADEMARKS.md` for full trademark usage terms.
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
31
48
|
## Why Quoroom?
|
|
32
49
|
|
|
33
50
|
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, modify their own behavior, manage a crypto wallet, and rent cloud stations for more compute — all governed by democratic consensus.
|
|
@@ -92,6 +109,8 @@ Quoroom is an open research project exploring autonomous agent collectives. Each
|
|
|
92
109
|
|
|
93
110
|
**Dashboard** — React SPA at [app.quoroom.ai](https://app.quoroom.ai). Manage rooms, agents, goals, memory, wallet — all from the browser. The UI loads from CDN but connects to your local server — all data stays on your machine.
|
|
94
111
|
|
|
112
|
+
**Auto-updates** — The server polls GitHub for new releases every 4 hours. When a new version is available, the dashboard shows a notification popup and a download row in Settings. One click downloads the installer for your platform directly — no browser redirect.
|
|
113
|
+
|
|
95
114
|
---
|
|
96
115
|
|
|
97
116
|
## Architecture
|