@f5xc-salesdemos/xcsh 18.42.0 → 18.43.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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@f5xc-salesdemos/xcsh",
|
|
4
|
-
"version": "18.
|
|
4
|
+
"version": "18.43.0",
|
|
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.
|
|
52
|
-
"@f5xc-salesdemos/pi-agent-core": "18.
|
|
53
|
-
"@f5xc-salesdemos/pi-ai": "18.
|
|
54
|
-
"@f5xc-salesdemos/pi-natives": "18.
|
|
55
|
-
"@f5xc-salesdemos/pi-tui": "18.
|
|
56
|
-
"@f5xc-salesdemos/pi-utils": "18.
|
|
51
|
+
"@f5xc-salesdemos/xcsh-stats": "18.43.0",
|
|
52
|
+
"@f5xc-salesdemos/pi-agent-core": "18.43.0",
|
|
53
|
+
"@f5xc-salesdemos/pi-ai": "18.43.0",
|
|
54
|
+
"@f5xc-salesdemos/pi-natives": "18.43.0",
|
|
55
|
+
"@f5xc-salesdemos/pi-tui": "18.43.0",
|
|
56
|
+
"@f5xc-salesdemos/pi-utils": "18.43.0",
|
|
57
57
|
"@sinclair/typebox": "^0.34",
|
|
58
58
|
"@xterm/headless": "^6.0",
|
|
59
59
|
"ajv": "^8.18",
|
|
@@ -412,6 +412,8 @@ function formatFieldConstraints(prop: Record<string, unknown>): string {
|
|
|
412
412
|
if (c.maxItems != null) parts.push(`maxItems: ${c.maxItems}`);
|
|
413
413
|
if (c.format) parts.push(`format: ${c.format}`);
|
|
414
414
|
if (Array.isArray(c.enum)) parts.push(`enum: ${(c.enum as string[]).join(", ")}`);
|
|
415
|
+
const meta = c.metadata as Record<string, unknown> | undefined;
|
|
416
|
+
if (meta?.note) parts.push(`note: ${String(meta.note)}`);
|
|
415
417
|
return parts.join(", ");
|
|
416
418
|
}
|
|
417
419
|
|
|
@@ -17,17 +17,17 @@ export interface BuildInfo {
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
export const BUILD_INFO: BuildInfo = {
|
|
20
|
-
"version": "18.
|
|
21
|
-
"commit": "
|
|
22
|
-
"shortCommit": "
|
|
20
|
+
"version": "18.43.0",
|
|
21
|
+
"commit": "3b728b77f3756587bfb90eb1e264dc60890ef4bd",
|
|
22
|
+
"shortCommit": "3b728b7",
|
|
23
23
|
"branch": "main",
|
|
24
|
-
"tag": "v18.
|
|
25
|
-
"commitDate": "2026-05-
|
|
26
|
-
"buildDate": "2026-05-
|
|
24
|
+
"tag": "v18.43.0",
|
|
25
|
+
"commitDate": "2026-05-05T18:56:20Z",
|
|
26
|
+
"buildDate": "2026-05-05T19:16:23.079Z",
|
|
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.
|
|
31
|
+
"commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/3b728b77f3756587bfb90eb1e264dc60890ef4bd",
|
|
32
|
+
"releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.43.0"
|
|
33
33
|
};
|
|
@@ -68,7 +68,7 @@ export async function saveProfile(profile: UserProfile): Promise<void> {
|
|
|
68
68
|
await Bun.write(PROFILE_PATH, JSON.stringify(profile, null, 2));
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
function mergeProfile(target: UserProfile, source: Partial<UserProfile>): void {
|
|
71
|
+
export function mergeProfile(target: UserProfile, source: Partial<UserProfile>): void {
|
|
72
72
|
for (const [key, value] of Object.entries(source)) {
|
|
73
73
|
if (value === undefined || value === null) continue;
|
|
74
74
|
const k = key as keyof UserProfile;
|