omnius 1.0.456 → 1.0.457
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 +5 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -575305,6 +575305,10 @@ var init_focusSupervisor = __esm({
|
|
|
575305
575305
|
this.clearSatisfiedDirective("requested edit already applied", input.turn);
|
|
575306
575306
|
return;
|
|
575307
575307
|
}
|
|
575308
|
+
if (input.success && input.noop && input.isReadLike && (this.directive?.requiredNextAction === "use_cached_evidence" || this.directive?.requiredNextAction === "read_authoritative_target")) {
|
|
575309
|
+
this.clearSatisfiedDirective(input.runtimeAuthored ? "cached authoritative evidence reused" : "authoritative evidence already available", input.turn);
|
|
575310
|
+
return;
|
|
575311
|
+
}
|
|
575308
575312
|
if (input.runtimeAuthored) {
|
|
575309
575313
|
this.lastDecision = "runtime_authored_not_satisfied";
|
|
575310
575314
|
this.lastReason = "runtime-authored control result did not execute the requested tool";
|
|
@@ -631048,6 +631052,7 @@ var init_status_bar = __esm({
|
|
|
631048
631052
|
this._contentScrollOffset = 0;
|
|
631049
631053
|
if (this.active) {
|
|
631050
631054
|
this.repaintContent();
|
|
631055
|
+
this.refreshDynamicBlocks();
|
|
631051
631056
|
this._contentCursorNeedsReplay = true;
|
|
631052
631057
|
if (this.writeDepth > 0) this._contentCursorReplayActive = true;
|
|
631053
631058
|
}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.457",
|
|
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.457",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
package/package.json
CHANGED