orquesta-cli 0.2.54 → 0.2.55

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.
@@ -200,6 +200,8 @@ export const PlanExecuteApp = ({ llmClient: initialLlmClient, modelInfo, resumeL
200
200
  };
201
201
  }, []);
202
202
  useEffect(() => {
203
+ if (process.env['ORQUESTA_DAEMON_CHILD'] || process.env['container'])
204
+ return;
203
205
  let cancelled = false;
204
206
  checkForCliUpdate(VERSION).then(info => {
205
207
  if (!cancelled && info) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orquesta-cli",
3
- "version": "0.2.54",
3
+ "version": "0.2.55",
4
4
  "description": "Orquesta CLI - AI-powered coding assistant with team collaboration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",