@f5xc-salesdemos/xcsh 18.66.1 → 18.66.2
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@f5xc-salesdemos/xcsh",
|
|
4
|
-
"version": "18.66.
|
|
4
|
+
"version": "18.66.2",
|
|
5
5
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
6
6
|
"homepage": "https://github.com/f5xc-salesdemos/xcsh",
|
|
7
7
|
"author": "Can Boluk",
|
|
@@ -48,12 +48,12 @@
|
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@agentclientprotocol/sdk": "0.16.1",
|
|
50
50
|
"@mozilla/readability": "^0.6",
|
|
51
|
-
"@f5xc-salesdemos/xcsh-stats": "18.66.
|
|
52
|
-
"@f5xc-salesdemos/pi-agent-core": "18.66.
|
|
53
|
-
"@f5xc-salesdemos/pi-ai": "18.66.
|
|
54
|
-
"@f5xc-salesdemos/pi-natives": "18.66.
|
|
55
|
-
"@f5xc-salesdemos/pi-tui": "18.66.
|
|
56
|
-
"@f5xc-salesdemos/pi-utils": "18.66.
|
|
51
|
+
"@f5xc-salesdemos/xcsh-stats": "18.66.2",
|
|
52
|
+
"@f5xc-salesdemos/pi-agent-core": "18.66.2",
|
|
53
|
+
"@f5xc-salesdemos/pi-ai": "18.66.2",
|
|
54
|
+
"@f5xc-salesdemos/pi-natives": "18.66.2",
|
|
55
|
+
"@f5xc-salesdemos/pi-tui": "18.66.2",
|
|
56
|
+
"@f5xc-salesdemos/pi-utils": "18.66.2",
|
|
57
57
|
"@sinclair/typebox": "^0.34",
|
|
58
58
|
"@xterm/headless": "^6.0",
|
|
59
59
|
"ajv": "^8.18",
|
|
@@ -17,17 +17,17 @@ export interface BuildInfo {
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
export const BUILD_INFO: BuildInfo = {
|
|
20
|
-
"version": "18.66.
|
|
21
|
-
"commit": "
|
|
22
|
-
"shortCommit": "
|
|
20
|
+
"version": "18.66.2",
|
|
21
|
+
"commit": "04c64b950d117fc3499dca62d084f30e41545d1e",
|
|
22
|
+
"shortCommit": "04c64b9",
|
|
23
23
|
"branch": "main",
|
|
24
|
-
"tag": "v18.66.
|
|
25
|
-
"commitDate": "2026-05-
|
|
26
|
-
"buildDate": "2026-05-18T07:
|
|
24
|
+
"tag": "v18.66.2",
|
|
25
|
+
"commitDate": "2026-05-18T07:27:11Z",
|
|
26
|
+
"buildDate": "2026-05-18T07:51:19.009Z",
|
|
27
27
|
"dirty": false,
|
|
28
28
|
"prNumber": "",
|
|
29
29
|
"repoUrl": "https://github.com/f5xc-salesdemos/xcsh",
|
|
30
30
|
"repoSlug": "f5xc-salesdemos/xcsh",
|
|
31
|
-
"commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/
|
|
32
|
-
"releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.66.
|
|
31
|
+
"commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/04c64b950d117fc3499dca62d084f30e41545d1e",
|
|
32
|
+
"releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.66.2"
|
|
33
33
|
};
|
package/src/tui/output-block.ts
CHANGED
|
@@ -39,12 +39,14 @@ export function renderOutputBlock(options: OutputBlockOptions, theme: Theme): st
|
|
|
39
39
|
const v = theme.boxSharp.vertical;
|
|
40
40
|
const cap = h.repeat(3);
|
|
41
41
|
const lineWidth = Math.max(0, width);
|
|
42
|
-
// Border colors: running/pending
|
|
43
|
-
//
|
|
44
|
-
//
|
|
42
|
+
// Border colors: error→error (red), warning→warning, running/pending→spinnerAccent, success→dim.
|
|
43
|
+
// borderColorOverride (from options) takes precedence for non-error states on F5-branded tools (e.g. XC-API);
|
|
44
|
+
// override is always cleared on error so all tools show a consistent error border; use F5_TOOL_BORDER_COLOR.
|
|
45
45
|
const resolvedBorderColor: ThemeColor =
|
|
46
|
-
|
|
47
|
-
|
|
46
|
+
state === "error"
|
|
47
|
+
? "error"
|
|
48
|
+
: (borderColorOverride ??
|
|
49
|
+
(state === "warning" ? "warning" : state === "running" || state === "pending" ? "spinnerAccent" : "dim"));
|
|
48
50
|
const border = (text: string) => theme.fg(resolvedBorderColor, text);
|
|
49
51
|
const bgFn = (() => {
|
|
50
52
|
if (!state || !applyBg) return undefined;
|