quoroom 0.1.40 → 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 +15 -0
- package/out/mcp/api-server.js +266 -743
- package/out/mcp/cli.js +3622 -4590
- package/out/mcp/server.js +199 -1237
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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:
|