omnius 1.0.288 → 1.0.289

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
@@ -607758,7 +607758,11 @@ var init_status_bar = __esm({
607758
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
607759
  buf += subAgents.substring(0, w - 4);
607760
607760
  buf += `\x1B[${subRow};${w}H${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607761
- const scrollRow = subRow + 1;
607761
+ const sepRow = subRow + 1;
607762
+ buf += `\x1B[${sepRow};1H${PANEL_BG_SEQ}\x1B[2K`;
607763
+ buf += `${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607764
+ buf += `\x1B[${sepRow};${w}H${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607765
+ const scrollRow = sepRow + 1;
607762
607766
  buf += `\x1B[${scrollRow};1H${PANEL_BG_SEQ}\x1B[2K`;
607763
607767
  buf += `${BOX_FG}│${RESET4}${PANEL_BG_SEQ}`;
607764
607768
  buf += `\x1B[38;5;${TEXT_DIM}m${PANEL_BG_SEQ}`;
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.288",
3
+ "version": "1.0.289",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.288",
9
+ "version": "1.0.289",
10
10
  "bundleDependencies": [
11
11
  "image-to-ascii"
12
12
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.288",
3
+ "version": "1.0.289",
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",