orquesta-cli 0.2.54 → 0.2.56

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.
@@ -134,9 +134,11 @@ export class EvalRunner {
134
134
  getPendingMessage: () => {
135
135
  try {
136
136
  if (fs.existsSync(this.followUpFile)) {
137
- const msg = fs.readFileSync(this.followUpFile, 'utf-8').trim();
138
- if (msg)
139
- return msg;
137
+ const raw = fs.readFileSync(this.followUpFile, 'utf-8').trim();
138
+ if (!raw)
139
+ return null;
140
+ const parts = raw.split('\n---FOLLOWUP---\n').filter(Boolean);
141
+ return parts[0] || null;
140
142
  }
141
143
  }
142
144
  catch { }
@@ -144,7 +146,17 @@ export class EvalRunner {
144
146
  },
145
147
  clearPendingMessage: () => {
146
148
  try {
147
- fs.unlinkSync(this.followUpFile);
149
+ if (fs.existsSync(this.followUpFile)) {
150
+ const raw = fs.readFileSync(this.followUpFile, 'utf-8').trim();
151
+ const parts = raw.split('\n---FOLLOWUP---\n').filter(Boolean);
152
+ parts.shift();
153
+ if (parts.length > 0) {
154
+ fs.writeFileSync(this.followUpFile, parts.join('\n---FOLLOWUP---\n') + '\n---FOLLOWUP---\n', 'utf-8');
155
+ }
156
+ else {
157
+ fs.unlinkSync(this.followUpFile);
158
+ }
159
+ }
148
160
  }
149
161
  catch { }
150
162
  },
@@ -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.56",
4
4
  "description": "Orquesta CLI - AI-powered coding assistant with team collaboration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",