open-agents-ai 0.187.404 → 0.187.405

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
@@ -532533,9 +532533,9 @@ var init_status_bar = __esm({
532533
532533
  const decorateMenuButton = (cmd, label) => {
532534
532534
  const fg3 = buttonFg(cmd);
532535
532535
  const themeBg = tuiBg();
532536
- const textFg2 = themeBg < 0 ? "\x1B[39m" : `\x1B[38;5;${themeBg}m`;
532536
+ const textFg = themeBg < 0 ? "\x1B[39m" : `\x1B[38;5;${themeBg}m`;
532537
532537
  const body = ` ${label} `;
532538
- return linkify(cmd, `\x1B[48;5;${fg3}m${textFg2}${body}\x1B[0m${PANEL_BG_SEQ}`);
532538
+ return linkify(cmd, `\x1B[48;5;${fg3}m${textFg}${body}\x1B[0m${PANEL_BG_SEQ}`);
532539
532539
  };
532540
532540
  const renderBtn = (cmd, label) => {
532541
532541
  const fg3 = buttonFg(cmd);
@@ -552511,9 +552511,8 @@ function accentFg() {
552511
552511
  const a2 = tuiAccent();
552512
552512
  return a2 < 0 ? "\x1B[39m" : `\x1B[38;5;${a2}m`;
552513
552513
  }
552514
- function textFg() {
552515
- const t2 = tuiTextPrimary();
552516
- return t2 < 0 ? "\x1B[39m" : `\x1B[38;5;${t2}m`;
552514
+ function dimFg() {
552515
+ return `\x1B[38;5;${tuiTextDim()}m`;
552517
552516
  }
552518
552517
  function ansi4(code8, text) {
552519
552518
  return isTTY5 ? `\x1B[${code8}m${text}\x1B[0m` : text;
@@ -552908,8 +552907,9 @@ ${icon} \x1B[38;5;198m${message2}\x1B[0m
552908
552907
  }
552909
552908
  function renderInfo2(message2) {
552910
552909
  const redir = _contentWriteHook?.redirect?.();
552911
- const icon = `${accentFg()}i\x1B[0m`;
552912
- const text = `${icon} ${textFg()}${message2}\x1B[0m
552910
+ const dim = dimFg();
552911
+ const icon = `${dim}🛈\x1B[0m`;
552912
+ const text = `${icon} ${dim}${message2}\x1B[0m
552913
552913
  `;
552914
552914
  if (redir) {
552915
552915
  redir(text);
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.404",
3
+ "version": "0.187.405",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "open-agents-ai",
9
- "version": "0.187.404",
9
+ "version": "0.187.405",
10
10
  "hasInstallScript": true,
11
11
  "license": "CC-BY-NC-4.0",
12
12
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.404",
3
+ "version": "0.187.405",
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",