quoroom 0.1.39 → 0.1.41

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
@@ -122,7 +122,7 @@ Quoroom is an open research project exploring autonomous agent collectives. Each
122
122
 
123
123
  **Credentials** — Secure credential storage for API keys and secrets. Agents list and retrieve credentials at runtime without exposing raw values in prompts or logs.
124
124
 
125
- **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.
125
+ **Auto-updates** — Update behavior depends on deployment mode. In local mode, the dashboard shows update controls (popup + Settings row) and lets you download/apply updates manually. In cloud mode, updates are managed automatically by the runtime with no manual update buttons in the UI.
126
126
 
127
127
  ---
128
128
 
@@ -483,6 +483,21 @@ docker build -t quoroom .
483
483
  docker run -p 3700:3700 quoroom
484
484
  ```
485
485
 
486
+ ### Cloud Runtime Auto-Update Diagnostics
487
+
488
+ Cloud runtimes now prefer a centralized update source and expose diagnostics in status:
489
+
490
+ - `QUOROOM_UPDATE_SOURCE_URL` — cloud endpoint for latest runtime release metadata (preferred source)
491
+ - `QUOROOM_UPDATE_SOURCE_TOKEN` — optional bearer token for update-source auth
492
+ - `QUOROOM_UPDATE_GITHUB_TOKEN` — optional fallback GitHub token when direct fallback is needed
493
+
494
+ `GET /api/status` includes `updateDiagnostics`:
495
+
496
+ - `lastCheckAt`, `lastSuccessAt`, `lastErrorAt`
497
+ - `lastErrorCode`, `lastErrorMessage`
498
+ - `updateSource` (`cloud` or `github`)
499
+ - `nextCheckAt`, `consecutiveFailures` (backoff visibility)
500
+
486
501
  ## Releasing
487
502
 
488
503
  Triggered by pushing a git tag (`v*`) → GitHub Actions multi-platform build: