omnius 1.0.580 → 1.0.581
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 +8 -5
- package/npm-shrinkwrap.json +9 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -594220,7 +594220,7 @@ command_receipts=${record.commandReceipts.length}
|
|
|
594220
594220
|
_gitProgress = null;
|
|
594221
594221
|
constructor(backend, options2) {
|
|
594222
594222
|
const adversaryMode = options2?.adversaryMode ?? options2?.observerMode ?? "both";
|
|
594223
|
-
const disableAdversaryCritic = options2?.disableAdversaryCritic ?? options2?.disableStepCritic ??
|
|
594223
|
+
const disableAdversaryCritic = options2?.disableAdversaryCritic ?? options2?.disableStepCritic ?? true;
|
|
594224
594224
|
this.backend = backend;
|
|
594225
594225
|
this._explicitCompactionThreshold = typeof options2?.compactionThreshold === "number";
|
|
594226
594226
|
this.options = {
|
|
@@ -594257,7 +594257,9 @@ command_receipts=${record.commandReceipts.length}
|
|
|
594257
594257
|
elicitTodoCreation: options2?.elicitTodoCreation ?? true,
|
|
594258
594258
|
allowTurnExtension: options2?.allowTurnExtension ?? true,
|
|
594259
594259
|
completionProvenanceGuard: options2?.completionProvenanceGuard ?? true,
|
|
594260
|
-
|
|
594260
|
+
// Retired with the adversary layer. Re-enabling it requires both this
|
|
594261
|
+
// explicit true value and disableAdversaryCritic: false above.
|
|
594262
|
+
backwardPassReview: options2?.backwardPassReview ?? false,
|
|
594261
594263
|
completionVerifyCommand: options2?.completionVerifyCommand,
|
|
594262
594264
|
focusSupervisor: resolveFocusSupervisorMode(options2?.focusSupervisor),
|
|
594263
594265
|
trajectoryCheckpoint: resolveTrajectoryCheckpointMode(options2?.trajectoryCheckpoint),
|
|
@@ -612153,7 +612155,7 @@ ${this._completionCaveat}` : this._completionCaveat;
|
|
|
612153
612155
|
this._refreshIntegrationClosure();
|
|
612154
612156
|
this._completionLedger = finalizeCompletionLedgerTruth(this._completionLedger);
|
|
612155
612157
|
this._saveCompletionLedgerSafe();
|
|
612156
|
-
if (completed && this._completionLedger.status === "incomplete_verification" && this.options.backwardPassReview !==
|
|
612158
|
+
if (completed && this._completionLedger.status === "incomplete_verification" && this.options.backwardPassReview === true && this.options.disableAdversaryCritic !== true && !this._completionCaveat) {
|
|
612157
612159
|
completed = false;
|
|
612158
612160
|
const unresolvedSummary = this._completionLedger.unresolved.slice(-3).map((item) => item.text).join("; ");
|
|
612159
612161
|
const caveat = unresolvedSummary ? `Incomplete verification: ${unresolvedSummary}` : "Incomplete verification: unresolved evidence remains in the completion ledger.";
|
|
@@ -714506,8 +714508,9 @@ Telegram link integrity contract:
|
|
|
714506
714508
|
bruteForce: false,
|
|
714507
714509
|
bruteForceMaxCycles: 0,
|
|
714508
714510
|
allowTurnExtension: false,
|
|
714509
|
-
completionProvenanceGuard:
|
|
714510
|
-
backwardPassReview:
|
|
714511
|
+
completionProvenanceGuard: false,
|
|
714512
|
+
backwardPassReview: false,
|
|
714513
|
+
disableAdversaryCritic: true
|
|
714511
714514
|
};
|
|
714512
714515
|
TELEGRAM_SUB_AGENT_DEFAULT_LIMIT = 2;
|
|
714513
714516
|
TELEGRAM_SUB_AGENT_MAX_LIMIT = 5;
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.581",
|
|
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.581",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
|
@@ -3563,11 +3563,12 @@
|
|
|
3563
3563
|
}
|
|
3564
3564
|
},
|
|
3565
3565
|
"node_modules/express-rate-limit": {
|
|
3566
|
-
"version": "8.
|
|
3567
|
-
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.
|
|
3568
|
-
"integrity": "sha512-
|
|
3566
|
+
"version": "8.6.0",
|
|
3567
|
+
"resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.6.0.tgz",
|
|
3568
|
+
"integrity": "sha512-XKJXDsASUOo0LLtFwW5hCcQGH0N4WQc/Rn8/Pvoia+TJFOkkFPvrtW9lZOeeNcxQJspvOIERMwiRLsVFlhHEkA==",
|
|
3569
3569
|
"license": "MIT",
|
|
3570
3570
|
"dependencies": {
|
|
3571
|
+
"debug": "^4.4.3",
|
|
3571
3572
|
"ip-address": "^10.2.0"
|
|
3572
3573
|
},
|
|
3573
3574
|
"engines": {
|
|
@@ -5457,9 +5458,9 @@
|
|
|
5457
5458
|
}
|
|
5458
5459
|
},
|
|
5459
5460
|
"node_modules/nkn-sdk/node_modules/ws": {
|
|
5460
|
-
"version": "7.5.
|
|
5461
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.
|
|
5462
|
-
"integrity": "sha512-
|
|
5461
|
+
"version": "7.5.13",
|
|
5462
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.13.tgz",
|
|
5463
|
+
"integrity": "sha512-rsKI6xDBFVf4r/x8XyChGK04QR/XHroxs/jUcoWvtEZM8TPU/X/uIY9B1CsSzYws9ZJb/6bbBu7dPhFW00CAoA==",
|
|
5463
5464
|
"license": "MIT",
|
|
5464
5465
|
"engines": {
|
|
5465
5466
|
"node": ">=8.3.0"
|
package/package.json
CHANGED