scai 0.1.162 → 0.1.163
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.
- package/dist/agents/MainAgent.js +0 -3
- package/package.json +1 -1
package/dist/agents/MainAgent.js
CHANGED
|
@@ -320,7 +320,6 @@ export class MainAgent {
|
|
|
320
320
|
content: input.data ?? input.content,
|
|
321
321
|
context: this.context
|
|
322
322
|
});
|
|
323
|
-
this.logLine("EXECUTE", step.action, stop());
|
|
324
323
|
// Return ModuleIO (can remain minimal since output is untyped)
|
|
325
324
|
return { query: step.description ?? input.query, data: {} };
|
|
326
325
|
}
|
|
@@ -352,7 +351,6 @@ export class MainAgent {
|
|
|
352
351
|
allowed = constraints?.allowFileWrites ?? false;
|
|
353
352
|
break;
|
|
354
353
|
}
|
|
355
|
-
this.logLine("EXEC", "canExecutePhase", undefined, `phase=${phase}, docsOnly=${docsOnly}, allowed=${allowed}`);
|
|
356
354
|
return allowed;
|
|
357
355
|
}
|
|
358
356
|
/* ───────────── scope gates ───────────── */
|
|
@@ -376,7 +374,6 @@ export class MainAgent {
|
|
|
376
374
|
allowed = true;
|
|
377
375
|
break;
|
|
378
376
|
}
|
|
379
|
-
this.logLine("EXEC", "canExecuteScope", undefined, `phase=${phase}, scope=${scope}, allowed=${allowed}`);
|
|
380
377
|
return allowed;
|
|
381
378
|
}
|
|
382
379
|
/* ----------------------------------- */
|