@f5xc-salesdemos/xcsh 19.15.0 → 19.15.1
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": "19.15.
|
|
4
|
+
"version": "19.15.1",
|
|
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",
|
|
@@ -50,12 +50,12 @@
|
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@agentclientprotocol/sdk": "0.16.1",
|
|
52
52
|
"@mozilla/readability": "^0.6",
|
|
53
|
-
"@f5xc-salesdemos/xcsh-stats": "19.15.
|
|
54
|
-
"@f5xc-salesdemos/pi-agent-core": "19.15.
|
|
55
|
-
"@f5xc-salesdemos/pi-ai": "19.15.
|
|
56
|
-
"@f5xc-salesdemos/pi-natives": "19.15.
|
|
57
|
-
"@f5xc-salesdemos/pi-tui": "19.15.
|
|
58
|
-
"@f5xc-salesdemos/pi-utils": "19.15.
|
|
53
|
+
"@f5xc-salesdemos/xcsh-stats": "19.15.1",
|
|
54
|
+
"@f5xc-salesdemos/pi-agent-core": "19.15.1",
|
|
55
|
+
"@f5xc-salesdemos/pi-ai": "19.15.1",
|
|
56
|
+
"@f5xc-salesdemos/pi-natives": "19.15.1",
|
|
57
|
+
"@f5xc-salesdemos/pi-tui": "19.15.1",
|
|
58
|
+
"@f5xc-salesdemos/pi-utils": "19.15.1",
|
|
59
59
|
"@sinclair/typebox": "^0.34",
|
|
60
60
|
"@xterm/headless": "^6.0",
|
|
61
61
|
"ajv": "^8.20",
|
|
@@ -17,17 +17,17 @@ export interface BuildInfo {
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
export const BUILD_INFO: BuildInfo = {
|
|
20
|
-
"version": "19.15.
|
|
21
|
-
"commit": "
|
|
22
|
-
"shortCommit": "
|
|
20
|
+
"version": "19.15.1",
|
|
21
|
+
"commit": "c973489d7e76f41327ba992e44617e173cc702e1",
|
|
22
|
+
"shortCommit": "c973489",
|
|
23
23
|
"branch": "main",
|
|
24
|
-
"tag": "v19.15.
|
|
25
|
-
"commitDate": "2026-06-08T02:
|
|
26
|
-
"buildDate": "2026-06-
|
|
24
|
+
"tag": "v19.15.1",
|
|
25
|
+
"commitDate": "2026-06-08T02:49:22Z",
|
|
26
|
+
"buildDate": "2026-06-08T03:14:05.699Z",
|
|
27
27
|
"dirty": true,
|
|
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/v19.15.
|
|
31
|
+
"commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/c973489d7e76f41327ba992e44617e173cc702e1",
|
|
32
|
+
"releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v19.15.1"
|
|
33
33
|
};
|
package/src/tui/output-block.ts
CHANGED
|
@@ -21,7 +21,7 @@ export interface OutputBlockOptions {
|
|
|
21
21
|
sections?: Array<{ label?: string; lines: string[] }>;
|
|
22
22
|
width: number;
|
|
23
23
|
applyBg?: boolean;
|
|
24
|
-
/** Override the state-derived border color.
|
|
24
|
+
/** Override the state-derived border color. Always takes precedence, including on error. Use for branded core tools. */
|
|
25
25
|
borderColor?: ThemeColor;
|
|
26
26
|
}
|
|
27
27
|
|
|
@@ -39,14 +39,11 @@ 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
|
-
//
|
|
43
|
-
//
|
|
44
|
-
// override is always cleared on error so all tools show a consistent error border; use F5_TOOL_BORDER_COLOR.
|
|
42
|
+
// borderColorOverride (F5 brand chrome) always takes precedence;
|
|
43
|
+
// built-in tools without an override use dim borders regardless of error state.
|
|
45
44
|
const resolvedBorderColor: ThemeColor =
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
: (borderColorOverride ??
|
|
49
|
-
(state === "warning" ? "warning" : state === "running" || state === "pending" ? "spinnerAccent" : "dim"));
|
|
45
|
+
borderColorOverride ??
|
|
46
|
+
(state === "warning" ? "warning" : state === "running" || state === "pending" ? "spinnerAccent" : "dim");
|
|
50
47
|
const border = (text: string) => theme.fg(resolvedBorderColor, text);
|
|
51
48
|
const bgFn = (() => {
|
|
52
49
|
if (!state || !applyBg) return undefined;
|