omnius 1.0.449 → 1.0.451

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
@@ -574462,6 +574462,12 @@ function violatesDirective(directive, input) {
574462
574462
  }
574463
574463
  switch (directive.requiredNextAction) {
574464
574464
  case "update_todos":
574465
+ if (input.toolName === "shell")
574466
+ return false;
574467
+ if (isEvidenceGatheringTool(input.toolName))
574468
+ return false;
574469
+ if (input.isReadLike)
574470
+ return false;
574465
574471
  return !(input.toolName === "todo_write" || isEditTool(input.toolName));
574466
574472
  case "read_authoritative_target":
574467
574473
  return !(isEvidenceGatheringTool(input.toolName) || input.isReadLike);
@@ -574471,6 +574477,8 @@ function violatesDirective(directive, input) {
574471
574477
  case "report_incomplete":
574472
574478
  return !isReportTool(input.toolName);
574473
574479
  case "edit_different_target":
574480
+ if (input.toolName === "shell")
574481
+ return false;
574474
574482
  return !isEditTool(input.toolName) && !isEvidenceGatheringTool(input.toolName) && !input.isReadLike;
574475
574483
  case "use_cached_evidence":
574476
574484
  return directive.forbiddenActionFamilies.includes(family);
@@ -578804,8 +578812,8 @@ ${parts.join("\n")}
578804
578812
  maxTokens: options2?.maxTokens ?? 16384,
578805
578813
  temperature: options2?.temperature ?? 0,
578806
578814
  requestTimeoutMs: options2?.requestTimeoutMs ?? 3e5,
578807
- taskTimeoutMs: options2?.taskTimeoutMs ?? 36e5,
578808
- // 60 min
578815
+ taskTimeoutMs: options2?.taskTimeoutMs ?? 0,
578816
+ // 0 = no hard timeout (turn budget is the loop breaker)
578809
578817
  compactionThreshold: options2?.compactionThreshold ?? 4e4,
578810
578818
  deepContext: options2?.deepContext ?? false,
578811
578819
  dynamicContext: options2?.dynamicContext ?? "",
@@ -584499,6 +584507,7 @@ Respond with your assessment, then take action.`;
584499
584507
  const hardDeadlineMs = Number.isFinite(taskTimeoutMs) && taskTimeoutMs > 0 ? start2 + taskTimeoutMs : Number.POSITIVE_INFINITY;
584500
584508
  let timedOut = false;
584501
584509
  let timeoutSummary = "";
584510
+ let _timeoutAdvisoryInjected = false;
584502
584511
  const remainingTaskMs = () => Number.isFinite(hardDeadlineMs) ? Math.max(0, hardDeadlineMs - Date.now()) : Number.POSITIVE_INFINITY;
584503
584512
  const boundedRequestTimeoutMs = () => {
584504
584513
  const configured = Number.isFinite(this.options.requestTimeoutMs) && this.options.requestTimeoutMs > 0 ? this.options.requestTimeoutMs : 3e5;
@@ -584528,8 +584537,7 @@ Respond with your assessment, then take action.`;
584528
584537
  return false;
584529
584538
  if (Date.now() < hardDeadlineMs)
584530
584539
  return false;
584531
- markTaskTimedOut(phase, turn);
584532
- return true;
584540
+ return !_timeoutAdvisoryInjected;
584533
584541
  };
584534
584542
  const selfEvalInterval = taskTimeoutMs;
584535
584543
  let nextSelfEval = start2 + selfEvalInterval;
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.449",
3
+ "version": "1.0.451",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.449",
9
+ "version": "1.0.451",
10
10
  "bundleDependencies": [
11
11
  "image-to-ascii"
12
12
  ],
@@ -719,34 +719,83 @@
719
719
  }
720
720
  },
721
721
  "node_modules/@libp2p/http-fetch": {
722
- "version": "4.0.3",
723
- "resolved": "https://registry.npmjs.org/@libp2p/http-fetch/-/http-fetch-4.0.3.tgz",
724
- "integrity": "sha512-JyjwtiQirLLlGRV6gb9kgJlsP3byiDbcp0IfzG3sbKEfbc1grTEqqlFFCXSfG/bqcBT0/Hk/MGCFT5KXzINzkA==",
722
+ "version": "4.0.4",
723
+ "resolved": "https://registry.npmjs.org/@libp2p/http-fetch/-/http-fetch-4.0.4.tgz",
724
+ "integrity": "sha512-MHROqwXP4KnRIZguzUIyrexRWuEF6InXKzUCFktergqgkkkkkt45ZiGx8wOa/1xbdUEZmiDoOITpHsNhU5GWBQ==",
725
725
  "license": "Apache-2.0 OR MIT",
726
726
  "dependencies": {
727
727
  "@achingbrain/http-parser-js": "^0.5.9",
728
728
  "@libp2p/http-utils": "^2.0.0",
729
729
  "@libp2p/interface": "^3.2.0",
730
- "uint8arrays": "^5.1.0"
730
+ "uint8arrays": "^6.1.1"
731
+ }
732
+ },
733
+ "node_modules/@libp2p/http-fetch/node_modules/multiformats": {
734
+ "version": "14.0.4",
735
+ "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.4.tgz",
736
+ "integrity": "sha512-+SXItmOUWzT0kjlIfkZ4NawJaC9jW/mPlyn902V9Qgpc7YDwdEiwqbiZxTyvC0XWh1jZguXca3A/WQ+UOPRLUA==",
737
+ "license": "Apache-2.0 OR MIT"
738
+ },
739
+ "node_modules/@libp2p/http-fetch/node_modules/uint8arrays": {
740
+ "version": "6.1.1",
741
+ "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-6.1.1.tgz",
742
+ "integrity": "sha512-iz7JN0XCSZYA111lhFG2Ui9EhFvTNekqSRHw3lvMHq+dzwWy1OQftxFQREEh4rffU0oSoXdQHsk2TiHKVm4fsA==",
743
+ "license": "Apache-2.0 OR MIT",
744
+ "dependencies": {
745
+ "multiformats": "^14.0.0"
731
746
  }
732
747
  },
733
748
  "node_modules/@libp2p/http-peer-id-auth": {
734
- "version": "2.0.2",
735
- "resolved": "https://registry.npmjs.org/@libp2p/http-peer-id-auth/-/http-peer-id-auth-2.0.2.tgz",
736
- "integrity": "sha512-db2f81mF5Dn/AcEkRmVlSSSSbu8BCXul2zuZtDQZwpBcH5RfF4eAe3SK+GG9r1SLxxPtrVdcYWgN6ywEVzOaUw==",
749
+ "version": "2.0.3",
750
+ "resolved": "https://registry.npmjs.org/@libp2p/http-peer-id-auth/-/http-peer-id-auth-2.0.3.tgz",
751
+ "integrity": "sha512-lBzwbnqIJa4SnMssseEtbgdGHB+sH2CQr3HxhSwEhLRRpU1iCmkUR1L9X+FTH6A5Xo62y/JYnnhBO7CG3YTSdg==",
737
752
  "license": "Apache-2.0 OR MIT",
738
753
  "dependencies": {
739
754
  "@libp2p/crypto": "^5.1.15",
740
755
  "@libp2p/interface": "^3.2.0",
741
756
  "@libp2p/peer-id": "^6.0.6",
742
- "uint8-varint": "^2.0.4",
743
- "uint8arrays": "^5.1.0"
757
+ "uint8-varint": "^3.0.0",
758
+ "uint8arrays": "^6.1.1"
759
+ }
760
+ },
761
+ "node_modules/@libp2p/http-peer-id-auth/node_modules/multiformats": {
762
+ "version": "14.0.4",
763
+ "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.4.tgz",
764
+ "integrity": "sha512-+SXItmOUWzT0kjlIfkZ4NawJaC9jW/mPlyn902V9Qgpc7YDwdEiwqbiZxTyvC0XWh1jZguXca3A/WQ+UOPRLUA==",
765
+ "license": "Apache-2.0 OR MIT"
766
+ },
767
+ "node_modules/@libp2p/http-peer-id-auth/node_modules/uint8-varint": {
768
+ "version": "3.0.0",
769
+ "resolved": "https://registry.npmjs.org/uint8-varint/-/uint8-varint-3.0.0.tgz",
770
+ "integrity": "sha512-S4DdpXBaLwKcFo7f0bWzWfHjbZ/i3QhM842qn+ZvHjxqFCfUcEB9SQNcmI69S+zMlcmIcKxsk9Iyw77S2Kxv6Q==",
771
+ "license": "Apache-2.0 OR MIT",
772
+ "dependencies": {
773
+ "uint8arraylist": "^3.0.1",
774
+ "uint8arrays": "^6.1.0"
775
+ }
776
+ },
777
+ "node_modules/@libp2p/http-peer-id-auth/node_modules/uint8arraylist": {
778
+ "version": "3.0.2",
779
+ "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
780
+ "integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
781
+ "license": "Apache-2.0 OR MIT",
782
+ "dependencies": {
783
+ "uint8arrays": "^6.0.0"
784
+ }
785
+ },
786
+ "node_modules/@libp2p/http-peer-id-auth/node_modules/uint8arrays": {
787
+ "version": "6.1.1",
788
+ "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-6.1.1.tgz",
789
+ "integrity": "sha512-iz7JN0XCSZYA111lhFG2Ui9EhFvTNekqSRHw3lvMHq+dzwWy1OQftxFQREEh4rffU0oSoXdQHsk2TiHKVm4fsA==",
790
+ "license": "Apache-2.0 OR MIT",
791
+ "dependencies": {
792
+ "multiformats": "^14.0.0"
744
793
  }
745
794
  },
746
795
  "node_modules/@libp2p/http-utils": {
747
- "version": "2.0.5",
748
- "resolved": "https://registry.npmjs.org/@libp2p/http-utils/-/http-utils-2.0.5.tgz",
749
- "integrity": "sha512-7+CYWM0MxjbVbPdCIn3SOjgxhoJpPlimLtoquIdeQC2xq4Y+d1NYqS5Ii2fbrWIwEPiJauuGxBgUs0Rz29wYGQ==",
796
+ "version": "2.0.6",
797
+ "resolved": "https://registry.npmjs.org/@libp2p/http-utils/-/http-utils-2.0.6.tgz",
798
+ "integrity": "sha512-WIYT1luITS4AZl0/b3tB5c7Kw9MKHAX2Lumx83oKImBPI9lPpRNafOmVVVRvwfjPq77t5nVt4ha8y1UDEtRN6g==",
750
799
  "license": "Apache-2.0 OR MIT",
751
800
  "dependencies": {
752
801
  "@achingbrain/http-parser-js": "^0.5.9",
@@ -761,7 +810,7 @@
761
810
  "race-event": "^1.6.1",
762
811
  "readable-stream": "^4.7.0",
763
812
  "uint8arraylist": "^3.0.2",
764
- "uint8arrays": "^5.1.0"
813
+ "uint8arrays": "^6.1.1"
765
814
  }
766
815
  },
767
816
  "node_modules/@libp2p/http-utils/node_modules/multiformats": {
@@ -779,7 +828,7 @@
779
828
  "uint8arrays": "^6.0.0"
780
829
  }
781
830
  },
782
- "node_modules/@libp2p/http-utils/node_modules/uint8arraylist/node_modules/uint8arrays": {
831
+ "node_modules/@libp2p/http-utils/node_modules/uint8arrays": {
783
832
  "version": "6.1.1",
784
833
  "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-6.1.1.tgz",
785
834
  "integrity": "sha512-iz7JN0XCSZYA111lhFG2Ui9EhFvTNekqSRHw3lvMHq+dzwWy1OQftxFQREEh4rffU0oSoXdQHsk2TiHKVm4fsA==",
@@ -789,9 +838,9 @@
789
838
  }
790
839
  },
791
840
  "node_modules/@libp2p/http-websocket": {
792
- "version": "2.0.3",
793
- "resolved": "https://registry.npmjs.org/@libp2p/http-websocket/-/http-websocket-2.0.3.tgz",
794
- "integrity": "sha512-irUeCm0k1GcO4EgaRLm18O45Fk4vTLckp1T/kReQ5tgDUBpENaNWBvYnSHqKtJZXGO1329RJZ186xo2BIX2DOg==",
841
+ "version": "2.0.4",
842
+ "resolved": "https://registry.npmjs.org/@libp2p/http-websocket/-/http-websocket-2.0.4.tgz",
843
+ "integrity": "sha512-AEATJ6MERtxY/UZkFWCgNpB7bhcVTmeeBKZkVl2RJbVYTk8CSv3fO3uXLcYFQ9W4rOa0eG4Gvr/USBU+41xB8A==",
795
844
  "license": "Apache-2.0 OR MIT",
796
845
  "dependencies": {
797
846
  "@achingbrain/http-parser-js": "^0.5.9",
@@ -803,7 +852,7 @@
803
852
  "multiformats": "^14.0.0",
804
853
  "race-event": "^1.6.1",
805
854
  "uint8arraylist": "^3.0.2",
806
- "uint8arrays": "^5.1.0"
855
+ "uint8arrays": "^6.1.1"
807
856
  }
808
857
  },
809
858
  "node_modules/@libp2p/http-websocket/node_modules/multiformats": {
@@ -821,7 +870,7 @@
821
870
  "uint8arrays": "^6.0.0"
822
871
  }
823
872
  },
824
- "node_modules/@libp2p/http-websocket/node_modules/uint8arraylist/node_modules/uint8arrays": {
873
+ "node_modules/@libp2p/http-websocket/node_modules/uint8arrays": {
825
874
  "version": "6.1.1",
826
875
  "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-6.1.1.tgz",
827
876
  "integrity": "sha512-iz7JN0XCSZYA111lhFG2Ui9EhFvTNekqSRHw3lvMHq+dzwWy1OQftxFQREEh4rffU0oSoXdQHsk2TiHKVm4fsA==",
@@ -4517,16 +4566,40 @@
4517
4566
  "license": "Apache-2.0 OR MIT"
4518
4567
  },
4519
4568
  "node_modules/it-byte-stream": {
4520
- "version": "2.0.6",
4521
- "resolved": "https://registry.npmjs.org/it-byte-stream/-/it-byte-stream-2.0.6.tgz",
4522
- "integrity": "sha512-lcPo7azQjSfQvLq+Rkb9Wq+ZERK/MGD9Z67BG5c/zcT96S6xO0dY+Lma1+fSuNspYgJNZq7yETWZim8eOfN9ag==",
4569
+ "version": "3.0.0",
4570
+ "resolved": "https://registry.npmjs.org/it-byte-stream/-/it-byte-stream-3.0.0.tgz",
4571
+ "integrity": "sha512-dpTm5CaRFuz7Wp8VRo8TLkhVNx4KCNT7fAtVorAz/CxrwBJwyz6a6Au9inPxqDN6kN7VVN3WUweJCziG39T48w==",
4523
4572
  "license": "Apache-2.0 OR MIT",
4524
4573
  "dependencies": {
4525
4574
  "abort-error": "^1.0.2",
4526
4575
  "it-queueless-pushable": "^2.0.0",
4527
4576
  "it-stream-types": "^2.0.2",
4528
4577
  "race-signal": "^2.0.0",
4529
- "uint8arraylist": "^2.4.8"
4578
+ "uint8arraylist": "^3.0.1"
4579
+ }
4580
+ },
4581
+ "node_modules/it-byte-stream/node_modules/multiformats": {
4582
+ "version": "14.0.4",
4583
+ "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.4.tgz",
4584
+ "integrity": "sha512-+SXItmOUWzT0kjlIfkZ4NawJaC9jW/mPlyn902V9Qgpc7YDwdEiwqbiZxTyvC0XWh1jZguXca3A/WQ+UOPRLUA==",
4585
+ "license": "Apache-2.0 OR MIT"
4586
+ },
4587
+ "node_modules/it-byte-stream/node_modules/uint8arraylist": {
4588
+ "version": "3.0.2",
4589
+ "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
4590
+ "integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
4591
+ "license": "Apache-2.0 OR MIT",
4592
+ "dependencies": {
4593
+ "uint8arrays": "^6.0.0"
4594
+ }
4595
+ },
4596
+ "node_modules/it-byte-stream/node_modules/uint8arrays": {
4597
+ "version": "6.1.1",
4598
+ "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-6.1.1.tgz",
4599
+ "integrity": "sha512-iz7JN0XCSZYA111lhFG2Ui9EhFvTNekqSRHw3lvMHq+dzwWy1OQftxFQREEh4rffU0oSoXdQHsk2TiHKVm4fsA==",
4600
+ "license": "Apache-2.0 OR MIT",
4601
+ "dependencies": {
4602
+ "multiformats": "^14.0.0"
4530
4603
  }
4531
4604
  },
4532
4605
  "node_modules/it-drain": {
@@ -4594,16 +4667,50 @@
4594
4667
  }
4595
4668
  },
4596
4669
  "node_modules/it-length-prefixed-stream": {
4597
- "version": "2.0.6",
4598
- "resolved": "https://registry.npmjs.org/it-length-prefixed-stream/-/it-length-prefixed-stream-2.0.6.tgz",
4599
- "integrity": "sha512-foGRL4Id5Ypuc9RIPEE5aHWZvpKoGpIASoTBeuAZgH/QMGEy+V0vNgK8U4NBPjKwbhyuhW9gYflXXP43W4ZcKw==",
4670
+ "version": "3.0.1",
4671
+ "resolved": "https://registry.npmjs.org/it-length-prefixed-stream/-/it-length-prefixed-stream-3.0.1.tgz",
4672
+ "integrity": "sha512-XffBM6F8exghmr9jLQa2TdnwYm/Y5a1zC/v9NFFIiGrDb4lgJfo3YBlXHwjtCqbOJBQ4idO5agY8uUM9VUEb8Q==",
4600
4673
  "license": "Apache-2.0 OR MIT",
4601
4674
  "dependencies": {
4602
4675
  "abort-error": "^1.0.2",
4603
- "it-byte-stream": "^2.0.0",
4676
+ "it-byte-stream": "^3.0.0",
4604
4677
  "it-stream-types": "^2.0.2",
4605
- "uint8-varint": "^2.0.4",
4606
- "uint8arraylist": "^2.4.8"
4678
+ "uint8-varint": "^3.0.0",
4679
+ "uint8arraylist": "^3.0.1"
4680
+ }
4681
+ },
4682
+ "node_modules/it-length-prefixed-stream/node_modules/multiformats": {
4683
+ "version": "14.0.4",
4684
+ "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.4.tgz",
4685
+ "integrity": "sha512-+SXItmOUWzT0kjlIfkZ4NawJaC9jW/mPlyn902V9Qgpc7YDwdEiwqbiZxTyvC0XWh1jZguXca3A/WQ+UOPRLUA==",
4686
+ "license": "Apache-2.0 OR MIT"
4687
+ },
4688
+ "node_modules/it-length-prefixed-stream/node_modules/uint8-varint": {
4689
+ "version": "3.0.0",
4690
+ "resolved": "https://registry.npmjs.org/uint8-varint/-/uint8-varint-3.0.0.tgz",
4691
+ "integrity": "sha512-S4DdpXBaLwKcFo7f0bWzWfHjbZ/i3QhM842qn+ZvHjxqFCfUcEB9SQNcmI69S+zMlcmIcKxsk9Iyw77S2Kxv6Q==",
4692
+ "license": "Apache-2.0 OR MIT",
4693
+ "dependencies": {
4694
+ "uint8arraylist": "^3.0.1",
4695
+ "uint8arrays": "^6.1.0"
4696
+ }
4697
+ },
4698
+ "node_modules/it-length-prefixed-stream/node_modules/uint8arraylist": {
4699
+ "version": "3.0.2",
4700
+ "resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
4701
+ "integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
4702
+ "license": "Apache-2.0 OR MIT",
4703
+ "dependencies": {
4704
+ "uint8arrays": "^6.0.0"
4705
+ }
4706
+ },
4707
+ "node_modules/it-length-prefixed-stream/node_modules/uint8arrays": {
4708
+ "version": "6.1.1",
4709
+ "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-6.1.1.tgz",
4710
+ "integrity": "sha512-iz7JN0XCSZYA111lhFG2Ui9EhFvTNekqSRHw3lvMHq+dzwWy1OQftxFQREEh4rffU0oSoXdQHsk2TiHKVm4fsA==",
4711
+ "license": "Apache-2.0 OR MIT",
4712
+ "dependencies": {
4713
+ "multiformats": "^14.0.0"
4607
4714
  }
4608
4715
  },
4609
4716
  "node_modules/it-map": {
@@ -4634,9 +4741,9 @@
4634
4741
  }
4635
4742
  },
4636
4743
  "node_modules/it-parallel": {
4637
- "version": "3.0.15",
4638
- "resolved": "https://registry.npmjs.org/it-parallel/-/it-parallel-3.0.15.tgz",
4639
- "integrity": "sha512-1iUV4wg7cDy40N32/XosK7mcwKM+oeSGq0r7czxNaUGGSQvbdSmkIoK4Vu/XPsXZIqBLt9tO+LDPi8RJBJ/Qwg==",
4744
+ "version": "3.0.16",
4745
+ "resolved": "https://registry.npmjs.org/it-parallel/-/it-parallel-3.0.16.tgz",
4746
+ "integrity": "sha512-qr3nTgj4fraSfr6Ix9JkHsy/Yb/4vmS3QIAu3fsX52r2SOTLbohXoixKp6AIhTJcorpKwjP0VFcpHr5V54jivA==",
4640
4747
  "license": "Apache-2.0 OR MIT",
4641
4748
  "dependencies": {
4642
4749
  "p-defer": "^4.0.1"
@@ -4673,13 +4780,13 @@
4673
4780
  }
4674
4781
  },
4675
4782
  "node_modules/it-protobuf-stream": {
4676
- "version": "3.0.0",
4677
- "resolved": "https://registry.npmjs.org/it-protobuf-stream/-/it-protobuf-stream-3.0.0.tgz",
4678
- "integrity": "sha512-slFaik6WDN2SqVCFW1XS35HLbFwOkVolTEgBiB2hx1l1482b9yMhZp5d6PAe5OsjgXXaSE3qTTiVRk+ZFzPo4g==",
4783
+ "version": "3.0.1",
4784
+ "resolved": "https://registry.npmjs.org/it-protobuf-stream/-/it-protobuf-stream-3.0.1.tgz",
4785
+ "integrity": "sha512-lKjTCPwL+aKUDovZUt4CyUAsYlOv9z09zyNnnGVWaQmbO6f0n6vV12F4hg0YwWyk9Er6UVWdu1EM7d6P62JnHw==",
4679
4786
  "license": "Apache-2.0 OR MIT",
4680
4787
  "dependencies": {
4681
4788
  "abort-error": "^1.0.2",
4682
- "it-length-prefixed-stream": "^2.0.0",
4789
+ "it-length-prefixed-stream": "^3.0.0",
4683
4790
  "it-stream-types": "^2.0.2",
4684
4791
  "uint8arraylist": "^3.0.1"
4685
4792
  }
@@ -4718,9 +4825,9 @@
4718
4825
  }
4719
4826
  },
4720
4827
  "node_modules/it-queue": {
4721
- "version": "1.1.3",
4722
- "resolved": "https://registry.npmjs.org/it-queue/-/it-queue-1.1.3.tgz",
4723
- "integrity": "sha512-RP+zN7tq+4EtuUZw5uXDpOmpgd66oKb15I4rKNvNMuB278nMJVRBHakQjnQAjqcVUySo4hEA3XnT3Ge6EvHH5w==",
4828
+ "version": "1.1.4",
4829
+ "resolved": "https://registry.npmjs.org/it-queue/-/it-queue-1.1.4.tgz",
4830
+ "integrity": "sha512-cGH0+YfMPmwQ+lV+MhJcOXqOgE04h0zQCXvDUmvGGTyW0VqxJZbi7V+PQFEuPVN/5dHQg5RY9aVjMCgmxXaE5Q==",
4724
4831
  "license": "Apache-2.0 OR MIT",
4725
4832
  "dependencies": {
4726
4833
  "abort-error": "^1.0.2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.449",
3
+ "version": "1.0.451",
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",