open-agents-ai 0.187.423 → 0.187.424
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 +7 -6
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -532623,7 +532623,8 @@ var init_status_bar = __esm({
|
|
|
532623
532623
|
const decorateMenuButton = (cmd, label) => {
|
|
532624
532624
|
const WHITE = 15;
|
|
532625
532625
|
const BLACK = 0;
|
|
532626
|
-
const
|
|
532626
|
+
const overline = "̅";
|
|
532627
|
+
const body = label.split("").map((c9) => c9 + overline).join("");
|
|
532627
532628
|
return linkify(cmd, `\x1B[38;5;${WHITE}m\x1B[48;5;${BLACK}m${body}\x1B[0m${PANEL_BG_SEQ}`);
|
|
532628
532629
|
};
|
|
532629
532630
|
const renderBtn = (cmd, label) => {
|
|
@@ -532632,11 +532633,11 @@ var init_status_bar = __esm({
|
|
|
532632
532633
|
};
|
|
532633
532634
|
const identity3 = this.buildHeaderIdentityRender();
|
|
532634
532635
|
const menuBtns = [
|
|
532635
|
-
{ cmd: "help", label: "help", w: "
|
|
532636
|
-
{ cmd: "voice", label: "voice", w: "
|
|
532637
|
-
{ cmd: "model", label: "model", w: "
|
|
532638
|
-
{ cmd: "endpoint", label: "endpoint", w: "
|
|
532639
|
-
{ cmd: "sponsor", label: "sponsor", w: "
|
|
532636
|
+
{ cmd: "help", label: "help", w: "help".length },
|
|
532637
|
+
{ cmd: "voice", label: "voice", w: "voice".length },
|
|
532638
|
+
{ cmd: "model", label: "model", w: "model".length },
|
|
532639
|
+
{ cmd: "endpoint", label: "endpoint", w: "endpoint".length },
|
|
532640
|
+
{ cmd: "sponsor", label: "sponsor", w: "sponsor".length }
|
|
532640
532641
|
];
|
|
532641
532642
|
const verW = identity3.width;
|
|
532642
532643
|
let menuPages = [];
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-agents-ai",
|
|
3
|
-
"version": "0.187.
|
|
3
|
+
"version": "0.187.424",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "open-agents-ai",
|
|
9
|
-
"version": "0.187.
|
|
9
|
+
"version": "0.187.424",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "CC-BY-NC-4.0",
|
|
12
12
|
"dependencies": {
|
package/package.json
CHANGED