orquesta-cli 0.2.103 → 0.2.104

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.
Files changed (2) hide show
  1. package/dist/cli.js +4 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -374,7 +374,10 @@ program
374
374
  else {
375
375
  logger.flow('No LLM endpoints configured');
376
376
  }
377
- await Promise.all([toolsPromise, syncPromise]);
377
+ await Promise.race([
378
+ Promise.all([toolsPromise, syncPromise]),
379
+ new Promise(resolve => setTimeout(resolve, Number(process.env['ORQUESTA_INIT_TIMEOUT_MS']) || 12000).unref?.()),
380
+ ]);
378
381
  spinner.stop();
379
382
  process.stdout.write('\x1B[2J\x1B[0f');
380
383
  if (!process.stdin.isTTY) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orquesta-cli",
3
- "version": "0.2.103",
3
+ "version": "0.2.104",
4
4
  "description": "Orquesta CLI - AI-powered coding assistant with team collaboration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",