minovative-mind-cli 2.13.2 → 2.13.3
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.
|
@@ -118,9 +118,6 @@ export class InvestigationAgentRunner {
|
|
|
118
118
|
// Tool loop — mirrors the existing context agent loop in contextAgent.ts
|
|
119
119
|
while (!crashed && !abortSignal.aborted && !isFinished) {
|
|
120
120
|
this.pingHeartbeat();
|
|
121
|
-
if (onProgress) {
|
|
122
|
-
onProgress(`[${this.agentLabel}] Thinking...`);
|
|
123
|
-
}
|
|
124
121
|
let result;
|
|
125
122
|
try {
|
|
126
123
|
result = await this.chat.sendMessage(currentMessage, undefined, abortSignal, () => this.pingHeartbeat());
|
|
@@ -244,9 +244,6 @@ export class SubAgentRunner {
|
|
|
244
244
|
try {
|
|
245
245
|
// Send initial prompt
|
|
246
246
|
const prompt = `Begin execution for task: ${this.taskId}\nObjective: ${this.intent}\n\nFollow the 3-step workflow: 1) inspect file -> 2) modify code -> 3) respond with text summary. Do not repeat search tools once results are returned.`;
|
|
247
|
-
if (this.onProgress) {
|
|
248
|
-
this.onProgress('Thinking...');
|
|
249
|
-
}
|
|
250
247
|
let turnResult = await this.chat.sendMessage(prompt, undefined, signal);
|
|
251
248
|
this.updateUsage(turnResult);
|
|
252
249
|
// Tool Loop
|
|
@@ -305,9 +302,6 @@ export class SubAgentRunner {
|
|
|
305
302
|
this.compactOlderToolResponses(1);
|
|
306
303
|
}
|
|
307
304
|
this.pingHeartbeat();
|
|
308
|
-
if (this.onProgress) {
|
|
309
|
-
this.onProgress('Thinking...');
|
|
310
|
-
}
|
|
311
305
|
// Feed tool results back to the model
|
|
312
306
|
turnResult = await this.chat.sendMessage(toolResponses, undefined, signal);
|
|
313
307
|
this.updateUsage(turnResult);
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED