@oxecli/oxe 1.0.70 → 1.0.71

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/cli.js CHANGED
@@ -41,15 +41,15 @@ export class CLI {
41
41
  const description = "A focused terminal workspace for building and shipping software.";
42
42
  renderPanel("[bold white]Terminal Coding Agent[/bold white]\n" +
43
43
  `[dim]${description}[/dim]\n\n` +
44
- labelCell("Version") +
44
+ labelCell("") +
45
45
  labelCell("Model") +
46
46
  labelCell("Status") +
47
47
  "\n" +
48
- valueCell(version, "cyan") +
49
- valueCell(model, "blue") +
48
+ valueCell("", "cyan") +
49
+ valueCell(model, "cyan") +
50
50
  valueCell("Ready", "green") +
51
51
  "\n\n" +
52
- `[dim]Environment: ${runtimeOsSummary()}[/dim]`, "Oxe", "Type /help for commands · Ctrl+C to interrupt", false, "90", "left");
52
+ `[dim]Environment: ${runtimeOsSummary()}[/dim]`, `\x1b[1;37mOxe\x1b[90m \x1b[1;36mv${version}\x1b[90m`, "Type /help for commands · Ctrl+C to interrupt", false, "90", "left");
53
53
  }
54
54
  saveSession(engine) {
55
55
  if (!this.inputItems.length)
package/dist/ui.js CHANGED
@@ -385,10 +385,12 @@ function panelString(content, title = "", subtitle = "", expand = true, borderSt
385
385
  if (!text)
386
386
  return "─".repeat(Math.max(boxW - 2, 0));
387
387
  const inner = ` ${text} `;
388
- const fill = Math.max(boxW - 2 - plainLen(inner), 0);
389
388
  if (align === "left") {
390
- return `${inner}${"".repeat(fill)}`;
389
+ const prefix = "───";
390
+ const fill = Math.max(boxW - 2 - plainLen(prefix) - plainLen(inner), 0);
391
+ return `${prefix}${inner}${"─".repeat(fill)}`;
391
392
  }
393
+ const fill = Math.max(boxW - 2 - plainLen(inner), 0);
392
394
  const left = Math.floor(fill / 2);
393
395
  const right = fill - left;
394
396
  return `${"─".repeat(left)}${inner}${"─".repeat(right)}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxecli/oxe",
3
- "version": "1.0.70",
3
+ "version": "1.0.71",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },