quoroom 0.1.6 → 0.1.7

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 CHANGED
@@ -37,7 +37,6 @@ Queen, Workers, Quorum. Goals, skills, self-modification, wallet, stations — s
37
37
  Official channels only:
38
38
 
39
39
  - `https://quoroom.ai`
40
- - `https://app.quoroom.ai`
41
40
  - `https://github.com/quoroom-ai`
42
41
 
43
42
  If you see impersonation or scam activity, report it to `hello@quoroom.ai`.
@@ -91,7 +90,7 @@ Quoroom is an open research project exploring autonomous agent collectives. Each
91
90
 
92
91
  **Memory** — Entities, observations, and relations with semantic vector search (384-dim embeddings). Knowledge persists across sessions.
93
92
 
94
- **Wallet** — EVM wallet for USDC on Base L2. Encrypted keys (AES-256-GCM). Agents can send and receive funds.
93
+ **Wallet** — EVM wallet with multi-chain support. USDC and USDT on Base, Ethereum, Arbitrum, Optimism, and Polygon. Encrypted keys (AES-256-GCM). Same address works on all chains — balance is aggregated across all networks.
95
94
 
96
95
  **On-Chain Identity** — ERC-8004 agent identity on Base. Rooms register as on-chain agents with discoverable metadata. Reputation-ready.
97
96
 
@@ -107,7 +106,7 @@ Quoroom is an open research project exploring autonomous agent collectives. Each
107
106
 
108
107
  **HTTP Server + REST API** — Full REST API with dual-token auth (agent + user) and WebSocket real-time events. Role-based access control per autonomy mode. Run `quoroom serve` to start.
109
108
 
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.
109
+ **Dashboard** — React SPA served directly by your local Quoroom server at `http://localhost:3700` (or your configured port). Manage rooms, agents, goals, memory, wallet — all from the browser, with local-first data storage.
111
110
 
112
111
  **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
112
 
@@ -130,7 +129,7 @@ Quoroom is an open research project exploring autonomous agent collectives. Each
130
129
  │ │
131
130
  │ ┌────────┐ ┌──────────┐ ┌────────────────┐ │
132
131
  │ │ Wallet │ │ Stations │ │ Task Scheduler │ │
133
- │ │(Base L2)│ │(Fly/E2B) │ │ (cron/once) │ │
132
+ │ │(EVM) │ │(Fly/E2B) │ │ (cron/once) │ │
134
133
  │ └────────┘ └──────────┘ └────────────────┘ │
135
134
  │ │
136
135
  │ ┌──────────────────────────────────────────┐ │
@@ -148,7 +147,7 @@ Quoroom is an open research project exploring autonomous agent collectives. Each
148
147
  │ │
149
148
  ┌──────┴──────┐ ┌───────┴───────┐
150
149
  │ Dashboard │ │ Cloud Sync │
151
- app.quoroom │ │ quoroom.ai │
150
+ localhost │ │ quoroom.ai │
152
151
  └─────────────┘ │ /rooms page │
153
152
  └───────────────┘
154
153
  ```
@@ -190,7 +189,7 @@ quoroom serve
190
189
 
191
190
  On first run, `quoroom serve` automatically registers the Quoroom MCP server in every AI coding tool you have installed (Claude Code, Claude Desktop, Cursor, Windsurf). Just **restart your AI client once** — after that, all `mcp__quoroom__*` tools are available automatically in every session.
192
191
 
193
- Open **[app.quoroom.ai](https://app.quoroom.ai)** the dashboard loads from CDN but all API calls go to `localhost`. Your data never leaves your machine.
192
+ Open **http://localhost:3700** (or the port shown in your terminal). The dashboard and API run locally, and your room data stays on your machine by default.
194
193
 
195
194
  > **MCP-only mode** (no HTTP server): `quoroom mcp` starts just the stdio MCP transport, useful for scripting or testing. For normal use, `quoroom serve` is all you need.
196
195
 
@@ -300,10 +299,10 @@ The room engine exposes an MCP server over stdio. All tools use the `quoroom_` p
300
299
 
301
300
  | Tool | Description |
302
301
  |------|-------------|
303
- | `quoroom_wallet_create` | Create an EVM wallet (USDC on Base) |
302
+ | `quoroom_wallet_create` | Create an EVM wallet (multi-chain) |
304
303
  | `quoroom_wallet_address` | Get wallet address |
305
- | `quoroom_wallet_balance` | Check USDC balance |
306
- | `quoroom_wallet_send` | Send USDC |
304
+ | `quoroom_wallet_balance` | Check on-chain balance (USDC/USDT, all chains) |
305
+ | `quoroom_wallet_send` | Send USDC or USDT on any supported chain |
307
306
  | `quoroom_wallet_history` | View transaction history |
308
307
 
309
308
  ### Identity
@@ -386,7 +385,7 @@ room/
386
385
  │ ├── quorum.ts # Voting & decisions
387
386
  │ ├── goals.ts # Goal decomposition
388
387
  │ ├── skills.ts # Skill management
389
- │ ├── wallet.ts # EVM wallet (Base L2, USDC)
388
+ │ ├── wallet.ts # EVM wallet (multi-chain, USDC/USDT)
390
389
  │ ├── identity.ts # ERC-8004 on-chain identity
391
390
  │ ├── station.ts # Cloud provisioning
392
391
  │ ├── task-runner.ts # Task execution engine
@@ -405,11 +404,19 @@ room/
405
404
 
406
405
  </details>
407
406
 
408
- ## No API keys needed
407
+ ## Model Providers
409
408
 
410
- No ChatGPT API. No Claude API. The queen uses your [Claude Code](https://docs.anthropic.com/en/docs/claude-code) subscription. Workers use [Ollama](https://ollama.com) — free, open-source LLMs. Scale up with stations.
409
+ Run entirely free with Ollama, or use your existing Claude/ChatGPT subscription or API.
411
410
 
412
- Quoroom is not affiliated with Anthropic or OpenAI.
411
+ | Role | Provider | Cost |
412
+ |------|----------|------|
413
+ | **Queen** | [Claude Code](https://docs.anthropic.com/en/docs/claude-code) | Subscription |
414
+ | | Codex (ChatGPT) | Subscription |
415
+ | | OpenAI API | Pay-per-use |
416
+ | | Claude API | Pay-per-use |
417
+ | | **Llama 3.2 via [Ollama](https://ollama.com)** | **Free** |
418
+ | **Workers** | [Ollama](https://ollama.com) models | **Free** |
419
+ | | Claude (subscription or API) | Subscription / API |
413
420
 
414
421
  ## License
415
422