omnius 1.0.94 → 1.0.95

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
@@ -571682,7 +571682,7 @@ function setTerminalTitle(task, version4) {
571682
571682
  const title = task ? `${task.slice(0, 60)} · ${ver}` : ver;
571683
571683
  process.stdout.write(`\x1B]2;${title}\x07`);
571684
571684
  }
571685
- var EXPERT_TOOL_BASELINES, CONTEXT_SWITCH_OVERHEAD, TURN_PLANNING_OVERHEAD, DEFAULT_TOOL_BASELINE, CODE_READ_CHARS_PER_SEC, PROSE_READ_CHARS_PER_SEC, MIN_CONTENT_FOR_READING, CODE_CONTENT_TOOLS, PROSE_CONTENT_TOOLS, HumanSpeedTracker, PANEL_BG_SEQ, CONTENT_BG_SEQ, BOX_FG, TEXT_PRIMARY, TEXT_DIM, NO_SUB_AGENTS_HEADER_LABEL, BOX_TL3, BOX_TR3, BOX_BL3, BOX_BR3, BOX_H3, BOX_V3, _globalFooterLock, RESET4, CURSOR_BLINK_BLOCK, _isWindows, StatusBar;
571685
+ var EXPERT_TOOL_BASELINES, CONTEXT_SWITCH_OVERHEAD, TURN_PLANNING_OVERHEAD, DEFAULT_TOOL_BASELINE, CODE_READ_CHARS_PER_SEC, PROSE_READ_CHARS_PER_SEC, MIN_CONTENT_FOR_READING, CODE_CONTENT_TOOLS, PROSE_CONTENT_TOOLS, HumanSpeedTracker, PANEL_BG_SEQ, CONTENT_BG_SEQ, BOX_FG, TEXT_PRIMARY, TEXT_DIM, NO_SUB_AGENTS_HEADER_LABEL, HEADER_ACCENT_BLUE, HEADER_ACCENT_BOLD_FG, HEADER_BUTTON_BG, HEADER_BUTTON_FG, BOX_TL3, BOX_TR3, BOX_BL3, BOX_BR3, BOX_H3, BOX_V3, _globalFooterLock, RESET4, CURSOR_BLINK_BLOCK, _isWindows, StatusBar;
571686
571686
  var init_status_bar = __esm({
571687
571687
  "packages/cli/src/tui/status-bar.ts"() {
571688
571688
  "use strict";
@@ -571861,6 +571861,10 @@ var init_status_bar = __esm({
571861
571861
  TEXT_PRIMARY = tuiTextPrimary() < 0 ? 252 : tuiTextPrimary();
571862
571862
  TEXT_DIM = tuiTextDim();
571863
571863
  NO_SUB_AGENTS_HEADER_LABEL = " no sub-agents ";
571864
+ HEADER_ACCENT_BLUE = 147;
571865
+ HEADER_ACCENT_BOLD_FG = `\x1B[1;38;5;${HEADER_ACCENT_BLUE}m`;
571866
+ HEADER_BUTTON_BG = `\x1B[48;5;${HEADER_ACCENT_BLUE}m`;
571867
+ HEADER_BUTTON_FG = "\x1B[38;5;0m";
571864
571868
  BOX_TL3 = "╭";
571865
571869
  BOX_TR3 = "╮";
571866
571870
  BOX_BL3 = "╰";
@@ -572217,7 +572221,7 @@ var init_status_bar = __esm({
572217
572221
  text += `${BOX_FG}${BOX_V3}${RESET4}${PANEL_BG_SEQ}`;
572218
572222
  width += 1;
572219
572223
  }
572220
- text += `\x1B[1;38;5;${TEXT_PRIMARY}m${PANEL_BG_SEQ}${segment}`;
572224
+ text += `${HEADER_ACCENT_BOLD_FG}${PANEL_BG_SEQ}${segment}`;
572221
572225
  width += segment.length;
572222
572226
  }
572223
572227
  return { text, width, separatorOffsets };
@@ -572283,22 +572287,10 @@ var init_status_bar = __esm({
572283
572287
  return fg2;
572284
572288
  };
572285
572289
  const decorateMenuButton = (cmd, label) => {
572286
- const isBranding = themeMode() === "branding";
572287
- if (isBranding) {
572288
- const BRAND_BG = 37;
572289
- const BRAND_FG = 0;
572290
- return linkify(
572291
- cmd,
572292
- `\x1B[38;5;${BRAND_FG}m\x1B[48;5;${BRAND_BG}m ${label} \x1B[0m${PANEL_BG_SEQ}`
572293
- );
572294
- } else {
572295
- const WHITE_BG = 15;
572296
- const BLACK_FG = 0;
572297
- return linkify(
572298
- cmd,
572299
- `\x1B[38;5;${BLACK_FG}m\x1B[48;5;${WHITE_BG}m ${label} \x1B[0m${PANEL_BG_SEQ}`
572300
- );
572301
- }
572290
+ return linkify(
572291
+ cmd,
572292
+ `${HEADER_BUTTON_FG}${HEADER_BUTTON_BG} ${label} \x1B[0m${PANEL_BG_SEQ}`
572293
+ );
572302
572294
  };
572303
572295
  const renderBtn = (cmd, label) => {
572304
572296
  const fg2 = buttonFg(cmd);
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "omnius",
3
- "version": "1.0.94",
3
+ "version": "1.0.95",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "omnius",
9
- "version": "1.0.94",
9
+ "version": "1.0.95",
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.94",
3
+ "version": "1.0.95",
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",