quoroom 0.1.23 → 0.1.25
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 +23 -0
- package/out/mcp/api-server.js +3806 -364
- package/out/mcp/cli.js +4808 -850
- package/out/mcp/server.js +26341 -24734
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -111,6 +111,8 @@ Quoroom is an open research project exploring autonomous agent collectives. Each
|
|
|
111
111
|
|
|
112
112
|
**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.
|
|
113
113
|
|
|
114
|
+
**Clerk** — A fully functional keeper assistant in the dashboard. It can chat across all rooms, remember context and history, act proactively, and execute management actions (create/update rooms, tasks, reminders, messaging) while streaming live commentary about swarm activity.
|
|
115
|
+
|
|
114
116
|
**Cloud Mode** — Deploy to the cloud and control your room remotely. Same dashboard works in both local and cloud mode. Cloud instances auto-detect their environment, support JWT-based auth, and serve the UI over HTTPS with strict CORS. Connect your Claude or Codex subscription from the remote Settings panel.
|
|
115
117
|
|
|
116
118
|
**Inbox** — Rooms can message the keeper and other rooms. Cross-room communication with reply threading. Agents escalate decisions, share updates, or request resources from neighboring rooms.
|
|
@@ -214,6 +216,27 @@ Open **http://localhost:3700** (or the port shown in your terminal). The dashboa
|
|
|
214
216
|
|
|
215
217
|
> **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.
|
|
216
218
|
|
|
219
|
+
## Clerk
|
|
220
|
+
|
|
221
|
+
The **Clerk** tab is your global assistant for the whole local system (not a single room).
|
|
222
|
+
|
|
223
|
+
- Clerk is a full assistant, not only commentary: it can reason, remember, and execute actions for the keeper
|
|
224
|
+
- Setup paths: Claude subscription (`claude`), Codex subscription (`codex`), OpenAI API (`openai:gpt-4o-mini`), Anthropic API (`anthropic:claude-3-5-sonnet-latest`)
|
|
225
|
+
- API keys entered in Clerk Setup are validated before saving
|
|
226
|
+
- Clerk can answer and do: room lifecycle, room settings, task creation, reminders, inter-room messaging, and keeper communication
|
|
227
|
+
- Clerk can act proactively through scheduled tasks/reminders and activity-driven commentary
|
|
228
|
+
- Telegram and Email are important Clerk control channels: connect at least one so Clerk can always reach you, keep reminders flowing, and store those conversations in Clerk memory
|
|
229
|
+
- Email replies are threaded when possible, and Telegram replies are direct/real-time for fast keeper control
|
|
230
|
+
- Live commentary streams over WebSocket channel `clerk` while rooms are running
|
|
231
|
+
|
|
232
|
+
API key resolution for Clerk API models:
|
|
233
|
+
|
|
234
|
+
1. Any room credential (`openai_api_key` or `anthropic_api_key`)
|
|
235
|
+
2. Clerk-saved API key (`clerk_openai_api_key` / `clerk_anthropic_api_key`)
|
|
236
|
+
3. Environment variable (`OPENAI_API_KEY` / `ANTHROPIC_API_KEY`)
|
|
237
|
+
|
|
238
|
+
See full guide: [docs/CLERK.md](docs/CLERK.md)
|
|
239
|
+
|
|
217
240
|
---
|
|
218
241
|
|
|
219
242
|
## All Tools
|