sliccy 1.25.0 → 1.26.0

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.
@@ -624,7 +624,11 @@ async function main() {
624
624
  app.use(express.json({ limit: '50mb' }));
625
625
  app.get('/api/runtime-config', (_req, res) => {
626
626
  res.json({
627
- trayWorkerBaseUrl: RUNTIME_FLAGS.leadWorkerBaseUrl ?? process.env['WORKER_BASE_URL'] ?? null,
627
+ trayWorkerBaseUrl: RUNTIME_FLAGS.leadWorkerBaseUrl ??
628
+ (process.env['WORKER_BASE_URL']?.trim() || null) ??
629
+ (DEV_MODE
630
+ ? 'https://slicc-tray-hub-staging.minivelos.workers.dev'
631
+ : 'https://www.sliccy.ai'),
628
632
  trayJoinUrl: discoveredTrayJoinUrl ?? null,
629
633
  });
630
634
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sliccy",
3
- "version": "1.25.0",
3
+ "version": "1.26.0",
4
4
  "description": "Browser-based coding agent with thin CLI server",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",