omnius 1.0.287 → 1.0.288

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
@@ -607023,6 +607023,8 @@ var init_status_bar = __esm({
607023
607023
  /** Single agent view with independent content buffer */
607024
607024
  _agentViews = /* @__PURE__ */ new Map();
607025
607025
  _activeViewId = "main";
607026
+ _headerExpanded = false;
607027
+ // toggles sub-agent / scroll info below header
607026
607028
  // Virtual scrollback buffer — stores content lines for Page Up/Down scrolling.
607027
607029
  // Since we're in alternate screen buffer, there's no native scrollback.
607028
607030
  // NOTE: _contentLines is now a reference to the ACTIVE view's buffer.
@@ -607636,9 +607638,12 @@ var init_status_bar = __esm({
607636
607638
  }
607637
607639
  getHeaderChromeLayout(termWidth) {
607638
607640
  return {
607639
- showPrev: false,
607641
+ showPrev: true,
607640
607642
  showNext: false,
607641
- contentStartCol: 2,
607643
+ prevLabel: this._headerExpanded ? "▲" : "▼",
607644
+ // ▲ ▼
607645
+ contentStartCol: 4,
607646
+ // shift content right for arrow
607642
607647
  innerWidth: Math.max(1, termWidth - 2)
607643
607648
  };
607644
607649
  }
@@ -607646,7 +607651,7 @@ var init_status_bar = __esm({
607646
607651
  const hdrRow = layout().headerContent;
607647
607652
  if (row !== hdrRow) return null;
607648
607653
  const chrome = this.getHeaderChromeLayout(termWidth);
607649
- if (chrome.showPrev && col === 2) return "header-prev";
607654
+ if (chrome.showPrev && col === 2) return "header-toggle";
607650
607655
  if (chrome.showNext && col === termWidth - 1) return "header-next";
607651
607656
  const hit = this._headerCommandZones.find(
607652
607657
  (zone) => col >= zone.start && col <= zone.end
@@ -607657,8 +607662,8 @@ var init_status_bar = __esm({
607657
607662
  refreshHeaderContent() {
607658
607663
  if (!this.active) return;
607659
607664
  const w = termCols();
607660
- const chrome = this.getHeaderChromeLayout(w);
607661
- const innerW = chrome.innerWidth;
607665
+ const chromeLayout = this.getHeaderChromeLayout(w);
607666
+ const innerW = chromeLayout.innerWidth;
607662
607667
  const panel = this._headerPanels[this._headerPanelIndex];
607663
607668
  if (!panel) return;
607664
607669
  this._headerCommandZones = [];
@@ -607674,12 +607679,12 @@ var init_status_bar = __esm({
607674
607679
  const usedW = panel.meta.isFirstPage ? versionWidth : 0;
607675
607680
  const btnTotalW = buttons.reduce((sum, btn) => sum + btn.w + 1, 0);
607676
607681
  const gap = Math.max(1, innerW - usedW - btnTotalW);
607677
- let col = chrome.contentStartCol + usedW + gap;
607682
+ let col = chromeLayout.contentStartCol + usedW + gap;
607678
607683
  if (panel.meta.isFirstPage && this._updateLatest) {
607679
607684
  try {
607680
607685
  this._verClickZone = {
607681
- start: chrome.contentStartCol,
607682
- end: chrome.contentStartCol + versionWidth - 1
607686
+ start: chromeLayout.contentStartCol,
607687
+ end: chromeLayout.contentStartCol + versionWidth - 1
607683
607688
  };
607684
607689
  } catch {
607685
607690
  }
@@ -607728,7 +607733,7 @@ var init_status_bar = __esm({
607728
607733
  if (cur.length > 0) pages.push(cur);
607729
607734
  const idx = parseInt(String(this.currentHeaderPanel).split("-")[1] || "0", 10) || 0;
607730
607735
  const page2 = pages[Math.max(0, Math.min(idx, pages.length - 1))] ?? [];
607731
- let col = chrome.contentStartCol;
607736
+ let col = chromeLayout.contentStartCol;
607732
607737
  const clickZones = [];
607733
607738
  for (const z18 of page2) {
607734
607739
  if (z18.id) clickZones.push({ start: col, end: col + z18.w - 2, id: z18.id });
@@ -607740,16 +607745,35 @@ var init_status_bar = __esm({
607740
607745
  let buf = "\x1B7";
607741
607746
  buf += `\x1B[${hdrRow};1H${PANEL_BG_SEQ}\x1B[2K`;
607742
607747
  buf += `${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607748
+ buf += `\x1B[${hdrRow};2H${TEXT_PRIMARY}${chromeLayout.prevLabel}${RESET4}${PANEL_BG_SEQ}`;
607743
607749
  buf += `\x1B[38;5;${TEXT_PRIMARY}m${PANEL_BG_SEQ}`;
607744
607750
  buf += content;
607745
607751
  buf += `\x1B[${hdrRow};${w}H${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607746
- const subRow = hdrRow + 1;
607747
- buf += `\x1B[${subRow};1H${PANEL_BG_SEQ}\x1B[2K`;
607748
- buf += `${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607749
- buf += `\x1B[38;5;${TEXT_DIM}m${PANEL_BG_SEQ}`;
607750
- const subAgents = this._agentViews.size > 1 ? Array.from(this._agentViews.values()).filter((v) => v.id !== "main").map((v) => `${v.status === "running" ? "●" : v.status === "completed" ? "✓" : "○"} ${v.label}`).join(" ") : "no sub-agents";
607751
- buf += subAgents.substring(0, w - 2);
607752
- buf += `\x1B[${subRow};${w}H${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607752
+ const scrollPct = this._contentScrollOffset > 0 ? `${Math.round(this._contentScrollOffset / this._contentMaxLines * 100)}%` : "live";
607753
+ if (this._headerExpanded) {
607754
+ const subRow = hdrRow + 1;
607755
+ buf += `\x1B[${subRow};1H${PANEL_BG_SEQ}\x1B[2K`;
607756
+ buf += `${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607757
+ buf += `\x1B[38;5;${TEXT_DIM}m${PANEL_BG_SEQ}`;
607758
+ const subAgents = this._agentViews.size > 1 ? Array.from(this._agentViews.values()).filter((v) => v.id !== "main").map((v) => `${v.status === "running" ? "●" : v.status === "completed" ? "✓" : "○"} ${v.label}`).join(" ") : "no sub-agents";
607759
+ buf += subAgents.substring(0, w - 4);
607760
+ buf += `\x1B[${subRow};${w}H${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607761
+ const scrollRow = subRow + 1;
607762
+ buf += `\x1B[${scrollRow};1H${PANEL_BG_SEQ}\x1B[2K`;
607763
+ buf += `${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607764
+ buf += `\x1B[38;5;${TEXT_DIM}m${PANEL_BG_SEQ}`;
607765
+ buf += `scroll: ${scrollPct}`.substring(0, w - 4);
607766
+ buf += `\x1B[${scrollRow};${w}H${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607767
+ buf += `\x1B[${scrollRow};1H${BOX_FG}└${"─".repeat(w - 2)}${BOX_FG}┘${RESET4}${PANEL_BG_SEQ}`;
607768
+ } else {
607769
+ const scrollRow = hdrRow + 1;
607770
+ buf += `\x1B[${scrollRow};1H${PANEL_BG_SEQ}\x1B[2K`;
607771
+ buf += `${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607772
+ buf += `\x1B[38;5;${TEXT_DIM}m${PANEL_BG_SEQ}`;
607773
+ buf += `scroll: ${scrollPct}`.substring(0, w - 4);
607774
+ buf += `\x1B[${scrollRow};${w}H${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607775
+ buf += `\x1B[${scrollRow};1H${BOX_FG}└${"─".repeat(w - 2)}${BOX_FG}┘${RESET4}${PANEL_BG_SEQ}`;
607776
+ }
607753
607777
  buf += "\x1B8";
607754
607778
  this.termWrite(buf);
607755
607779
  }
@@ -608750,6 +608774,11 @@ var init_status_bar = __esm({
608750
608774
  this.nextHeaderPanel();
608751
608775
  return;
608752
608776
  }
608777
+ if (cmd === "header-toggle") {
608778
+ this._headerExpanded = !this._headerExpanded;
608779
+ this.refreshHeaderAndFooter();
608780
+ return;
608781
+ }
608753
608782
  setPressedButton(cmd);
608754
608783
  setHoveredButton(null);
608755
608784
  this.renderHeaderButtons();
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.287",
3
+ "version": "1.0.288",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.287",
9
+ "version": "1.0.288",
10
10
  "bundleDependencies": [
11
11
  "image-to-ascii"
12
12
  ],
@@ -1633,128 +1633,128 @@
1633
1633
  }
1634
1634
  },
1635
1635
  "node_modules/@peculiar/asn1-cms": {
1636
- "version": "2.7.0",
1637
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-cms/-/asn1-cms-2.7.0.tgz",
1638
- "integrity": "sha512-hew63shtzzvBcSHbhm+cyAmKe6AIfinT9hzEqSPjDC6opTTMKmTkQ0gHuN2KsWlvqiKw1S/fS94fhag/FJkioQ==",
1636
+ "version": "2.8.0",
1637
+ "resolved": "https://registry.npmjs.org/@peculiar/asn1-cms/-/asn1-cms-2.8.0.tgz",
1638
+ "integrity": "sha512-NgekZOrSJFSBFLFoLfwePguAWAx7z1+f2TEsWFUMyiqqfntZ4+S/S5hzqME3q4pCA0iOsFKdwiQ35dwY24eVqA==",
1639
1639
  "license": "MIT",
1640
1640
  "dependencies": {
1641
- "@peculiar/asn1-schema": "^2.7.0",
1642
- "@peculiar/asn1-x509": "^2.7.0",
1643
- "@peculiar/asn1-x509-attr": "^2.7.0",
1644
- "asn1js": "^3.0.6",
1641
+ "@peculiar/asn1-schema": "^2.8.0",
1642
+ "@peculiar/asn1-x509": "^2.8.0",
1643
+ "@peculiar/asn1-x509-attr": "^2.8.0",
1644
+ "asn1js": "^3.0.10",
1645
1645
  "tslib": "^2.8.1"
1646
1646
  }
1647
1647
  },
1648
1648
  "node_modules/@peculiar/asn1-csr": {
1649
- "version": "2.7.0",
1650
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-csr/-/asn1-csr-2.7.0.tgz",
1651
- "integrity": "sha512-VVsAyGqErT9D1SY4aEqozThXMVI+ssVRiv2DDeYuvpBKLIgZ3hYs3Ay3u/VSoKq6ESFi9cf6rf3IOOzfwh7oMA==",
1649
+ "version": "2.8.0",
1650
+ "resolved": "https://registry.npmjs.org/@peculiar/asn1-csr/-/asn1-csr-2.8.0.tgz",
1651
+ "integrity": "sha512-akbF8+uvleHs8sejNPQxwmVFuInAg6FMNHOwMILXfP518YfFJwdR3jr6oNUPOaEJfuEhn/vkNOCIT6ASUd4mbg==",
1652
1652
  "license": "MIT",
1653
1653
  "dependencies": {
1654
- "@peculiar/asn1-schema": "^2.7.0",
1655
- "@peculiar/asn1-x509": "^2.7.0",
1656
- "asn1js": "^3.0.6",
1654
+ "@peculiar/asn1-schema": "^2.8.0",
1655
+ "@peculiar/asn1-x509": "^2.8.0",
1656
+ "asn1js": "^3.0.10",
1657
1657
  "tslib": "^2.8.1"
1658
1658
  }
1659
1659
  },
1660
1660
  "node_modules/@peculiar/asn1-ecc": {
1661
- "version": "2.7.0",
1662
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-ecc/-/asn1-ecc-2.7.0.tgz",
1663
- "integrity": "sha512-n7KEs/Q/wrB415cxy4fHOBhegp4NdJ15fkJPwcB/3/8iNBQC2L/N7SChJPKDJPZGYH0jD4Tg4/0vnHmwghnbKw==",
1661
+ "version": "2.8.0",
1662
+ "resolved": "https://registry.npmjs.org/@peculiar/asn1-ecc/-/asn1-ecc-2.8.0.tgz",
1663
+ "integrity": "sha512-ohwlk+u9Rv2NOAY1c6MfHj45ATVF8R1DUN/WCgABiRtLi2ZftlZWZX7KvpAbU8v9xPcmoILfELeEABj/rn18AQ==",
1664
1664
  "license": "MIT",
1665
1665
  "dependencies": {
1666
- "@peculiar/asn1-schema": "^2.7.0",
1667
- "@peculiar/asn1-x509": "^2.7.0",
1668
- "asn1js": "^3.0.6",
1666
+ "@peculiar/asn1-schema": "^2.8.0",
1667
+ "@peculiar/asn1-x509": "^2.8.0",
1668
+ "asn1js": "^3.0.10",
1669
1669
  "tslib": "^2.8.1"
1670
1670
  }
1671
1671
  },
1672
1672
  "node_modules/@peculiar/asn1-pfx": {
1673
- "version": "2.7.0",
1674
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-pfx/-/asn1-pfx-2.7.0.tgz",
1675
- "integrity": "sha512-V/nrlQVmhg7lYAsM7E13UDL5erAwFv6kCIVFqNaMIHSVi7dngcT839JkRTkQBqznMG98l2XjxYk74ZztAohZzA==",
1673
+ "version": "2.8.0",
1674
+ "resolved": "https://registry.npmjs.org/@peculiar/asn1-pfx/-/asn1-pfx-2.8.0.tgz",
1675
+ "integrity": "sha512-5yof1ytoB++RQtaFbqSUJ8pxDJtZT6vbVqZ8XoJ61ph7UjNVvfFwAilnCodqkNsAodpy13gDhoxZXw00pghnyg==",
1676
1676
  "license": "MIT",
1677
1677
  "dependencies": {
1678
- "@peculiar/asn1-cms": "^2.7.0",
1679
- "@peculiar/asn1-pkcs8": "^2.7.0",
1680
- "@peculiar/asn1-rsa": "^2.7.0",
1681
- "@peculiar/asn1-schema": "^2.7.0",
1682
- "asn1js": "^3.0.6",
1678
+ "@peculiar/asn1-cms": "^2.8.0",
1679
+ "@peculiar/asn1-pkcs8": "^2.8.0",
1680
+ "@peculiar/asn1-rsa": "^2.8.0",
1681
+ "@peculiar/asn1-schema": "^2.8.0",
1682
+ "asn1js": "^3.0.10",
1683
1683
  "tslib": "^2.8.1"
1684
1684
  }
1685
1685
  },
1686
1686
  "node_modules/@peculiar/asn1-pkcs8": {
1687
- "version": "2.7.0",
1688
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs8/-/asn1-pkcs8-2.7.0.tgz",
1689
- "integrity": "sha512-9GTl1nE8Mx1kTZ+7QyYatDyKsm34QcWRBFkY1iPvWC3X4Dona5s/tlLiQsx5WzVdZqiMBZNYT0buyw4/vbhnjw==",
1687
+ "version": "2.8.0",
1688
+ "resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs8/-/asn1-pkcs8-2.8.0.tgz",
1689
+ "integrity": "sha512-qAKXtLpBEw9LqhKpjw3ajZSXlBur+ipW+y2ivVBQAG6F6qRx94yO+1ZR4mvw+YaCfKSaOzLeYEzsPaBp4SJELA==",
1690
1690
  "license": "MIT",
1691
1691
  "dependencies": {
1692
- "@peculiar/asn1-schema": "^2.7.0",
1693
- "@peculiar/asn1-x509": "^2.7.0",
1694
- "asn1js": "^3.0.6",
1692
+ "@peculiar/asn1-schema": "^2.8.0",
1693
+ "@peculiar/asn1-x509": "^2.8.0",
1694
+ "asn1js": "^3.0.10",
1695
1695
  "tslib": "^2.8.1"
1696
1696
  }
1697
1697
  },
1698
1698
  "node_modules/@peculiar/asn1-pkcs9": {
1699
- "version": "2.7.0",
1700
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs9/-/asn1-pkcs9-2.7.0.tgz",
1701
- "integrity": "sha512-Bh7m+OuIaSEllPQcSd9OSp93F4ROWH7sbITWV8MI+8dwsjE5111/87VxiWVvYFKyww3vp39geLv9ENqhwWHcew==",
1699
+ "version": "2.8.0",
1700
+ "resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs9/-/asn1-pkcs9-2.8.0.tgz",
1701
+ "integrity": "sha512-b5nDWCnkV60+cQ141D6sVVwK9nz64R5n3zSVnklGd+ECdkW2Ol3U1a6yYFlalpSOaD557yuJB64A+q42jG7lUQ==",
1702
1702
  "license": "MIT",
1703
1703
  "dependencies": {
1704
- "@peculiar/asn1-cms": "^2.7.0",
1705
- "@peculiar/asn1-pfx": "^2.7.0",
1706
- "@peculiar/asn1-pkcs8": "^2.7.0",
1707
- "@peculiar/asn1-schema": "^2.7.0",
1708
- "@peculiar/asn1-x509": "^2.7.0",
1709
- "@peculiar/asn1-x509-attr": "^2.7.0",
1710
- "asn1js": "^3.0.6",
1704
+ "@peculiar/asn1-cms": "^2.8.0",
1705
+ "@peculiar/asn1-pfx": "^2.8.0",
1706
+ "@peculiar/asn1-pkcs8": "^2.8.0",
1707
+ "@peculiar/asn1-schema": "^2.8.0",
1708
+ "@peculiar/asn1-x509": "^2.8.0",
1709
+ "@peculiar/asn1-x509-attr": "^2.8.0",
1710
+ "asn1js": "^3.0.10",
1711
1711
  "tslib": "^2.8.1"
1712
1712
  }
1713
1713
  },
1714
1714
  "node_modules/@peculiar/asn1-rsa": {
1715
- "version": "2.7.0",
1716
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-rsa/-/asn1-rsa-2.7.0.tgz",
1717
- "integrity": "sha512-/qvENQrXyTZURjMqSeofHul0JJt2sNSzSwk36pl2olkHbaioMQgrASDZAlHXl0xUlnVbHj0uGgOrBMTb5x2aJQ==",
1715
+ "version": "2.8.0",
1716
+ "resolved": "https://registry.npmjs.org/@peculiar/asn1-rsa/-/asn1-rsa-2.8.0.tgz",
1717
+ "integrity": "sha512-zHEUlCqB2mk7x2lxDwHHJy7hWZOPdGHVlsmITWKB5/PbQo61atbu9PJ/0r9dQNMwFzbKPXZ8uK8/91eUhRznSg==",
1718
1718
  "license": "MIT",
1719
1719
  "dependencies": {
1720
- "@peculiar/asn1-schema": "^2.7.0",
1721
- "@peculiar/asn1-x509": "^2.7.0",
1722
- "asn1js": "^3.0.6",
1720
+ "@peculiar/asn1-schema": "^2.8.0",
1721
+ "@peculiar/asn1-x509": "^2.8.0",
1722
+ "asn1js": "^3.0.10",
1723
1723
  "tslib": "^2.8.1"
1724
1724
  }
1725
1725
  },
1726
1726
  "node_modules/@peculiar/asn1-schema": {
1727
- "version": "2.7.0",
1728
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.7.0.tgz",
1729
- "integrity": "sha512-W8ZfWzLmQnrcky+eh3tni4IozMdqBDiHWU0N+vve/UGjMaUs8c0L7A2oEdkBXS8rTpWDpK/aoI3DG/L/hxmxPg==",
1727
+ "version": "2.8.0",
1728
+ "resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.8.0.tgz",
1729
+ "integrity": "sha512-7YT0U/ze0tF2QOBbE15gKZwy5tvgGyLRiRHLzhlbOpf7BT032oBSd0haZqXn5W6l26WLlu3dyxzjM+2638/z2Q==",
1730
1730
  "license": "MIT",
1731
1731
  "dependencies": {
1732
1732
  "@peculiar/utils": "^2.0.2",
1733
- "asn1js": "^3.0.6",
1733
+ "asn1js": "^3.0.10",
1734
1734
  "tslib": "^2.8.1"
1735
1735
  }
1736
1736
  },
1737
1737
  "node_modules/@peculiar/asn1-x509": {
1738
- "version": "2.7.0",
1739
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-x509/-/asn1-x509-2.7.0.tgz",
1740
- "integrity": "sha512-mUn9RRrkGDnG4ALfunDmzyRW5dg+sWCj/pfnCCqEHYbkGxEpvUt6iVJv8Yw1cyp6SWZ26ZE5oSmI5SqEaen15g==",
1738
+ "version": "2.8.0",
1739
+ "resolved": "https://registry.npmjs.org/@peculiar/asn1-x509/-/asn1-x509-2.8.0.tgz",
1740
+ "integrity": "sha512-N0CMuhWUzsWEVq6F1q9X6+VKUnWzSW+cSVg+aPaGGwDdbFoFWTYgin5MHwXgpWd6y9COMBxnfy/Qc+Xc7F0Zwg==",
1741
1741
  "license": "MIT",
1742
1742
  "dependencies": {
1743
- "@peculiar/asn1-schema": "^2.7.0",
1743
+ "@peculiar/asn1-schema": "^2.8.0",
1744
1744
  "@peculiar/utils": "^2.0.2",
1745
- "asn1js": "^3.0.6",
1745
+ "asn1js": "^3.0.10",
1746
1746
  "tslib": "^2.8.1"
1747
1747
  }
1748
1748
  },
1749
1749
  "node_modules/@peculiar/asn1-x509-attr": {
1750
- "version": "2.7.0",
1751
- "resolved": "https://registry.npmjs.org/@peculiar/asn1-x509-attr/-/asn1-x509-attr-2.7.0.tgz",
1752
- "integrity": "sha512-NS8e7SOgXipkzUPLF/sce7ukpMpWjhxYsH0n6Y+bHYo4TTxOb95Zv7hqwSuL212mj5YxovjdOKQOgH1As3E94w==",
1750
+ "version": "2.8.0",
1751
+ "resolved": "https://registry.npmjs.org/@peculiar/asn1-x509-attr/-/asn1-x509-attr-2.8.0.tgz",
1752
+ "integrity": "sha512-tHjkfS/qhMnmrlB2J9NhflQlQ7In3khO3CfmVrriOlpTeErY9ZIKOso1hQ5JQiyrJ7ShvqVPk7E5fQmbclkSKA==",
1753
1753
  "license": "MIT",
1754
1754
  "dependencies": {
1755
- "@peculiar/asn1-schema": "^2.7.0",
1756
- "@peculiar/asn1-x509": "^2.7.0",
1757
- "asn1js": "^3.0.6",
1755
+ "@peculiar/asn1-schema": "^2.8.0",
1756
+ "@peculiar/asn1-x509": "^2.8.0",
1757
+ "asn1js": "^3.0.10",
1758
1758
  "tslib": "^2.8.1"
1759
1759
  }
1760
1760
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.287",
3
+ "version": "1.0.288",
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",