quoroom 0.1.24 → 0.1.26

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
@@ -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.
@@ -185,6 +187,10 @@ brew install quoroom-ai/quoroom/quoroom
185
187
 
186
188
  Download from [GitHub Releases](https://github.com/quoroom-ai/room/releases). Installers add `quoroom` to your PATH automatically. No dependencies needed.
187
189
 
190
+ Installer launchers:
191
+ - macOS `.pkg`: open `/Applications/Quoroom Server.app`
192
+ - Windows `.exe`: Start Menu -> Quoroom Server -> Open Quoroom Server
193
+
188
194
  | Platform | Installer | Archive |
189
195
  |----------|-----------|---------|
190
196
  | macOS (Apple Silicon + Intel) | `.pkg` | `.tar.gz` |
@@ -208,12 +214,35 @@ Removes Quoroom binaries, all data, and logs. Prompts for confirmation before pr
208
214
  quoroom serve
209
215
  ```
210
216
 
217
+ If you installed with the macOS `.pkg` or Windows `.exe` installer, you can also use the launcher app/shortcut instead of command line.
218
+
211
219
  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.
212
220
 
213
221
  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.
214
222
 
215
223
  > **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
224
 
225
+ ## Clerk
226
+
227
+ The **Clerk** tab is your global assistant for the whole local system (not a single room).
228
+
229
+ - Clerk is a full assistant, not only commentary: it can reason, remember, and execute actions for the keeper
230
+ - Setup paths: Claude subscription (`claude`), Codex subscription (`codex`), OpenAI API (`openai:gpt-4o-mini`), Anthropic API (`anthropic:claude-3-5-sonnet-latest`)
231
+ - API keys entered in Clerk Setup are validated before saving
232
+ - Clerk can answer and do: room lifecycle, room settings, task creation, reminders, inter-room messaging, and keeper communication
233
+ - Clerk can act proactively through scheduled tasks/reminders and activity-driven commentary
234
+ - 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
235
+ - Email replies are threaded when possible, and Telegram replies are direct/real-time for fast keeper control
236
+ - Live commentary streams over WebSocket channel `clerk` while rooms are running
237
+
238
+ API key resolution for Clerk API models:
239
+
240
+ 1. Any room credential (`openai_api_key` or `anthropic_api_key`)
241
+ 2. Clerk-saved API key (`clerk_openai_api_key` / `clerk_anthropic_api_key`)
242
+ 3. Environment variable (`OPENAI_API_KEY` / `ANTHROPIC_API_KEY`)
243
+
244
+ See full guide: [docs/CLERK.md](docs/CLERK.md)
245
+
217
246
  ---
218
247
 
219
248
  ## All Tools