omnius 1.0.579 → 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 CHANGED
@@ -548257,15 +548257,20 @@ function ensureLuxttsInstalled() {
548257
548257
  timeout: 12e5
548258
548258
  },
548259
548259
  {
548260
- label: "piper-phonemize (optional)",
548260
+ label: "piper-phonemize",
548261
548261
  args: [
548262
548262
  "piper-phonemize",
548263
548263
  "--find-links",
548264
548264
  "https://k2-fsa.github.io/icefall/piper_phonemize.html"
548265
548265
  ],
548266
- fatal: false,
548266
+ fatal: true,
548267
548267
  timeout: 6e5
548268
548268
  },
548269
+ ...process.platform === "linux" && process.arch === "x64" ? [{
548270
+ label: "piper-phonemize CPython extension",
548271
+ args: ["piper-phonemize-fix"],
548272
+ fatal: true
548273
+ }] : [],
548269
548274
  {
548270
548275
  label: "Chinese text processing",
548271
548276
  args: ["jieba", "pypinyin", "cn2an"],
@@ -548305,15 +548310,20 @@ function ensureLuxttsInstalled() {
548305
548310
  timeout: 12e5
548306
548311
  },
548307
548312
  {
548308
- label: "piper-phonemize (optional)",
548313
+ label: "piper-phonemize",
548309
548314
  args: [
548310
548315
  "piper-phonemize",
548311
548316
  "--find-links",
548312
548317
  "https://k2-fsa.github.io/icefall/piper_phonemize.html"
548313
548318
  ],
548314
- fatal: false,
548319
+ fatal: true,
548315
548320
  timeout: 6e5
548316
548321
  },
548322
+ ...process.platform === "linux" && process.arch === "x64" ? [{
548323
+ label: "piper-phonemize CPython extension",
548324
+ args: ["piper-phonemize-fix"],
548325
+ fatal: true
548326
+ }] : [],
548317
548327
  {
548318
548328
  label: "Chinese text processing",
548319
548329
  args: ["jieba", "pypinyin", "cn2an"],
@@ -594210,7 +594220,7 @@ command_receipts=${record.commandReceipts.length}
594210
594220
  _gitProgress = null;
594211
594221
  constructor(backend, options2) {
594212
594222
  const adversaryMode = options2?.adversaryMode ?? options2?.observerMode ?? "both";
594213
- const disableAdversaryCritic = options2?.disableAdversaryCritic ?? options2?.disableStepCritic ?? false;
594223
+ const disableAdversaryCritic = options2?.disableAdversaryCritic ?? options2?.disableStepCritic ?? true;
594214
594224
  this.backend = backend;
594215
594225
  this._explicitCompactionThreshold = typeof options2?.compactionThreshold === "number";
594216
594226
  this.options = {
@@ -594247,7 +594257,9 @@ command_receipts=${record.commandReceipts.length}
594247
594257
  elicitTodoCreation: options2?.elicitTodoCreation ?? true,
594248
594258
  allowTurnExtension: options2?.allowTurnExtension ?? true,
594249
594259
  completionProvenanceGuard: options2?.completionProvenanceGuard ?? true,
594250
- backwardPassReview: options2?.backwardPassReview,
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,
594251
594263
  completionVerifyCommand: options2?.completionVerifyCommand,
594252
594264
  focusSupervisor: resolveFocusSupervisorMode(options2?.focusSupervisor),
594253
594265
  trajectoryCheckpoint: resolveTrajectoryCheckpointMode(options2?.trajectoryCheckpoint),
@@ -612143,7 +612155,7 @@ ${this._completionCaveat}` : this._completionCaveat;
612143
612155
  this._refreshIntegrationClosure();
612144
612156
  this._completionLedger = finalizeCompletionLedgerTruth(this._completionLedger);
612145
612157
  this._saveCompletionLedgerSafe();
612146
- if (completed && this._completionLedger.status === "incomplete_verification" && this.options.backwardPassReview !== false && !this._completionCaveat) {
612158
+ if (completed && this._completionLedger.status === "incomplete_verification" && this.options.backwardPassReview === true && this.options.disableAdversaryCritic !== true && !this._completionCaveat) {
612147
612159
  completed = false;
612148
612160
  const unresolvedSummary = this._completionLedger.unresolved.slice(-3).map((item) => item.text).join("; ");
612149
612161
  const caveat = unresolvedSummary ? `Incomplete verification: ${unresolvedSummary}` : "Incomplete verification: unresolved evidence remains in the completion ledger.";
@@ -678378,12 +678390,20 @@ Error: ${err instanceof Error ? err.message : String(err)}`
678378
678390
  fatal: true,
678379
678391
  label: "LinaCodec (voice cloning codec)"
678380
678392
  },
678381
- // Non-fatal (not hard-imported by LuxTTS):
678382
678393
  {
678383
678394
  cmd: `${pipCmd} -m pip install --quiet piper-phonemize --find-links https://k2-fsa.github.io/icefall/piper_phonemize.html`,
678384
- fatal: false,
678385
- label: "piper-phonemize (optional)"
678395
+ fatal: true,
678396
+ label: "piper-phonemize"
678386
678397
  },
678398
+ // The upstream cp312 Linux wheel ships its Python wrapper without
678399
+ // piper_phonemize_cpp. This companion wheel supplies that extension
678400
+ // while the upstream package above continues to satisfy ZipVoice's
678401
+ // declared dependency metadata.
678402
+ ...process.platform === "linux" && process.arch === "x64" ? [{
678403
+ cmd: `${pipCmd} -m pip install --quiet piper-phonemize-fix`,
678404
+ fatal: true,
678405
+ label: "piper-phonemize CPython extension"
678406
+ }] : [],
678387
678407
  {
678388
678408
  cmd: `${pipCmd} -m pip install --quiet jieba pypinyin cn2an`,
678389
678409
  fatal: true,
@@ -678406,9 +678426,14 @@ Error: ${err instanceof Error ? err.message : String(err)}`
678406
678426
  },
678407
678427
  {
678408
678428
  cmd: `${pipCmd} -m pip install --quiet piper-phonemize --find-links https://k2-fsa.github.io/icefall/piper_phonemize.html`,
678409
- fatal: false,
678429
+ fatal: true,
678410
678430
  label: "piper-phonemize"
678411
678431
  },
678432
+ ...process.platform === "linux" && process.arch === "x64" ? [{
678433
+ cmd: `${pipCmd} -m pip install --quiet piper-phonemize-fix`,
678434
+ fatal: true,
678435
+ label: "piper-phonemize CPython extension"
678436
+ }] : [],
678412
678437
  {
678413
678438
  cmd: `${pipCmd} -m pip install --quiet jieba pypinyin cn2an`,
678414
678439
  fatal: true,
@@ -714483,8 +714508,9 @@ Telegram link integrity contract:
714483
714508
  bruteForce: false,
714484
714509
  bruteForceMaxCycles: 0,
714485
714510
  allowTurnExtension: false,
714486
- completionProvenanceGuard: true,
714487
- backwardPassReview: true
714511
+ completionProvenanceGuard: false,
714512
+ backwardPassReview: false,
714513
+ disableAdversaryCritic: true
714488
714514
  };
714489
714515
  TELEGRAM_SUB_AGENT_DEFAULT_LIMIT = 2;
714490
714516
  TELEGRAM_SUB_AGENT_MAX_LIMIT = 5;
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.579",
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.579",
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.5.2",
3567
- "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.5.2.tgz",
3568
- "integrity": "sha512-5Kb34ipNX694DH48vN9irak1Qx30nb0PLYHXfJgw4YEjiC3ZEmZJhwOp+VfiCYwFzvFTdB9QkArYS5kXa2cx2A==",
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.12",
5461
- "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.12.tgz",
5462
- "integrity": "sha512-1xGnbYN3zbog9CwuNDQULNRrTCLIn46/WmpR1f0w6PsCYQHkylZr5vkd6kfMZYV6pRnQkcPNRyiA8LsrNKyhpg==",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.579",
3
+ "version": "1.0.581",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",