@robinpath/cli 1.89.0 → 1.90.0
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.mjs +8 -17
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -18598,7 +18598,7 @@ function getNativeModules() {
|
|
|
18598
18598
|
import { join as join3, basename as basename2 } from "node:path";
|
|
18599
18599
|
import { homedir as homedir2, platform as platform2 } from "node:os";
|
|
18600
18600
|
import { existsSync as existsSync2 } from "node:fs";
|
|
18601
|
-
var CLI_VERSION = true ? "1.
|
|
18601
|
+
var CLI_VERSION = true ? "1.90.0" : "1.90.0";
|
|
18602
18602
|
var FLAG_QUIET = false;
|
|
18603
18603
|
var FLAG_VERBOSE = false;
|
|
18604
18604
|
var FLAG_AUTO_ACCEPT = false;
|
|
@@ -24476,29 +24476,25 @@ function ChatApp({ engine }) {
|
|
|
24476
24476
|
const cwdShort = process.cwd().replace(homedir8(), "~");
|
|
24477
24477
|
const isFirst = messages.length === 0;
|
|
24478
24478
|
return /* @__PURE__ */ jsxs2(Box2, { flexDirection: "column", paddingY: 1, children: [
|
|
24479
|
-
isFirst && !loading ? /* @__PURE__ */ jsxs2(Box2, { borderStyle: "round", borderColor: "gray",
|
|
24479
|
+
isFirst && !loading ? /* @__PURE__ */ jsxs2(Box2, { borderStyle: "round", borderColor: "gray", paddingX: 1, children: [
|
|
24480
24480
|
/* @__PURE__ */ jsxs2(Box2, { flexDirection: "column", width: "50%", children: [
|
|
24481
|
-
/* @__PURE__ */ jsx2(Text2, { children: " " }),
|
|
24482
|
-
/* @__PURE__ */ jsx2(Text2, { bold: true, children: " Welcome to RobinPath!" }),
|
|
24483
|
-
/* @__PURE__ */ jsx2(Text2, { children: " " }),
|
|
24481
|
+
/* @__PURE__ */ jsx2(Text2, { bold: true, children: " Welcome to RobinPath!" }),
|
|
24484
24482
|
/* @__PURE__ */ jsxs2(Text2, { children: [
|
|
24485
|
-
"
|
|
24483
|
+
" ",
|
|
24486
24484
|
/* @__PURE__ */ jsx2(Text2, { color: "cyan", bold: true, children: "\u25C6" }),
|
|
24487
24485
|
" ",
|
|
24488
24486
|
/* @__PURE__ */ jsx2(Text2, { dimColor: true, children: modelName })
|
|
24489
24487
|
] }),
|
|
24490
24488
|
/* @__PURE__ */ jsxs2(Text2, { children: [
|
|
24491
|
-
"
|
|
24489
|
+
" ",
|
|
24492
24490
|
/* @__PURE__ */ jsx2(Text2, { dimColor: true, children: cwdShort })
|
|
24493
|
-
] })
|
|
24494
|
-
/* @__PURE__ */ jsx2(Text2, { children: " " })
|
|
24491
|
+
] })
|
|
24495
24492
|
] }),
|
|
24496
24493
|
/* @__PURE__ */ jsxs2(Box2, { flexDirection: "column", width: "50%", children: [
|
|
24497
|
-
/* @__PURE__ */ jsx2(Text2, { bold: true, children: "Tips" }),
|
|
24498
24494
|
/* @__PURE__ */ jsxs2(Text2, { dimColor: true, children: [
|
|
24499
24495
|
"Type ",
|
|
24500
24496
|
/* @__PURE__ */ jsx2(Text2, { color: "cyan", children: "/" }),
|
|
24501
|
-
" to see
|
|
24497
|
+
" to see commands"
|
|
24502
24498
|
] }),
|
|
24503
24499
|
/* @__PURE__ */ jsxs2(Text2, { dimColor: true, children: [
|
|
24504
24500
|
"Use ",
|
|
@@ -24508,12 +24504,7 @@ function ChatApp({ engine }) {
|
|
|
24508
24504
|
/* @__PURE__ */ jsxs2(Text2, { dimColor: true, children: [
|
|
24509
24505
|
"Use ",
|
|
24510
24506
|
/* @__PURE__ */ jsx2(Text2, { color: "cyan", children: "\\" }),
|
|
24511
|
-
"
|
|
24512
|
-
] }),
|
|
24513
|
-
/* @__PURE__ */ jsxs2(Text2, { dimColor: true, children: [
|
|
24514
|
-
"Type ",
|
|
24515
|
-
/* @__PURE__ */ jsx2(Text2, { color: "cyan", children: "exit" }),
|
|
24516
|
-
" to quit"
|
|
24507
|
+
" for multiline"
|
|
24517
24508
|
] })
|
|
24518
24509
|
] })
|
|
24519
24510
|
] }) : null,
|