omnius 1.0.612 → 1.0.613
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/index.js +0 -31
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -659055,37 +659055,6 @@ Corrective action: try a different approach first: read relevant files, adjust a
|
|
|
659055
659055
|
return { tc, output: stopMsg, success: false };
|
|
659056
659056
|
}
|
|
659057
659057
|
}
|
|
659058
|
-
if (editFeedbackRequiredBeforeMoreEdits && this._isProjectEditTool(tc.name)) {
|
|
659059
|
-
this.emit({
|
|
659060
|
-
type: "tool_call",
|
|
659061
|
-
toolName: tc.name,
|
|
659062
|
-
toolArgs: tc.arguments,
|
|
659063
|
-
turn,
|
|
659064
|
-
timestamp: (/* @__PURE__ */ new Date()).toISOString()
|
|
659065
|
-
});
|
|
659066
|
-
const blockMsg = [
|
|
659067
|
-
`Error: edit feedback required before another project edit tool can run.`,
|
|
659068
|
-
editFeedbackRequiredBeforeMoreEdits,
|
|
659069
|
-
``,
|
|
659070
|
-
`This ${tc.name} call was emitted in the same assistant response after the failed atomic batch_edit, so it was not executed. Observe the batch_edit result first, then issue a corrected edit in the next turn.`
|
|
659071
|
-
].join("\n");
|
|
659072
|
-
const lastLog = toolCallLog[_toolLogTailIdx];
|
|
659073
|
-
if (lastLog) {
|
|
659074
|
-
lastLog.success = false;
|
|
659075
|
-
lastLog.mutated = false;
|
|
659076
|
-
lastLog.mutatedFiles = [];
|
|
659077
|
-
lastLog.outputPreview = blockMsg.slice(0, 100);
|
|
659078
|
-
}
|
|
659079
|
-
this.emit({
|
|
659080
|
-
type: "tool_result",
|
|
659081
|
-
toolName: tc.name,
|
|
659082
|
-
success: false,
|
|
659083
|
-
content: blockMsg.slice(0, 120),
|
|
659084
|
-
turn,
|
|
659085
|
-
timestamp: (/* @__PURE__ */ new Date()).toISOString()
|
|
659086
|
-
});
|
|
659087
|
-
return { tc, output: blockMsg, success: false };
|
|
659088
|
-
}
|
|
659089
659058
|
{
|
|
659090
659059
|
const todoExpansionBlock = this._todoExpansionRequiredBlocker(tc.name);
|
|
659091
659060
|
if (todoExpansionBlock) {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.613",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "omnius",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.613",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
package/package.json
CHANGED