@f5xc-salesdemos/xcsh 18.48.1 → 18.49.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 +7 -7
- package/src/internal-urls/api-catalog-resolve.ts +8 -0
- package/src/internal-urls/build-info.generated.ts +9 -9
- package/src/internal-urls/computer-profile.ts +687 -0
- package/src/internal-urls/index.ts +2 -0
- package/src/internal-urls/salesforce-context.ts +591 -0
- package/src/internal-urls/xcsh-protocol.ts +49 -1
- package/src/modes/interactive-mode.ts +10 -0
- package/src/pipeline-report/generator.ts +351 -0
- package/src/pipeline-report/index.ts +3 -0
- package/src/pipeline-report/renderer.ts +183 -0
- package/src/pipeline-report/types.ts +102 -0
- package/src/prompts/system/system-prompt.md +14 -7
- package/src/sdk.ts +36 -0
- package/src/system-prompt.ts +19 -0
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.49.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.49.0",
|
|
52
|
+
"@f5xc-salesdemos/pi-agent-core": "18.49.0",
|
|
53
|
+
"@f5xc-salesdemos/pi-ai": "18.49.0",
|
|
54
|
+
"@f5xc-salesdemos/pi-natives": "18.49.0",
|
|
55
|
+
"@f5xc-salesdemos/pi-tui": "18.49.0",
|
|
56
|
+
"@f5xc-salesdemos/pi-utils": "18.49.0",
|
|
57
57
|
"@sinclair/typebox": "^0.34",
|
|
58
58
|
"@xterm/headless": "^6.0",
|
|
59
59
|
"ajv": "^8.18",
|
|
@@ -143,8 +143,16 @@ function formatConstraints(constraints: Record<string, unknown> | undefined): st
|
|
|
143
143
|
if (constraints.maximum != null) parts.push(`max: ${constraints.maximum}`);
|
|
144
144
|
if (constraints.minItems != null) parts.push(`minItems: ${constraints.minItems}`);
|
|
145
145
|
if (constraints.maxItems != null) parts.push(`maxItems: ${constraints.maxItems}`);
|
|
146
|
+
if (Array.isArray(constraints.ranges)) {
|
|
147
|
+
const formatted = (constraints.ranges as Array<{ minimum: number; maximum: number }>)
|
|
148
|
+
.map(r => (r.minimum === r.maximum ? `{${r.minimum}}` : `[${r.minimum},${r.maximum}]`))
|
|
149
|
+
.join(" ∪ ");
|
|
150
|
+
parts.push(`ranges: ${formatted}`);
|
|
151
|
+
}
|
|
146
152
|
if (constraints.format) parts.push(`format: ${constraints.format}`);
|
|
147
153
|
if (Array.isArray(constraints.enum)) parts.push(`enum: ${constraints.enum.join(", ")}`);
|
|
154
|
+
const meta = constraints.metadata as Record<string, unknown> | undefined;
|
|
155
|
+
if (meta?.note) parts.push(`note: ${String(meta.note)}`);
|
|
148
156
|
return parts.length > 0 ? parts.join(", ") : "--";
|
|
149
157
|
}
|
|
150
158
|
|
|
@@ -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.49.0",
|
|
21
|
+
"commit": "4c512f45cdaf128a400c49b58f4738baf3f00b1e",
|
|
22
|
+
"shortCommit": "4c512f4",
|
|
23
23
|
"branch": "main",
|
|
24
|
-
"tag": "v18.
|
|
25
|
-
"commitDate": "2026-05-
|
|
26
|
-
"buildDate": "2026-05-
|
|
27
|
-
"dirty":
|
|
24
|
+
"tag": "v18.49.0",
|
|
25
|
+
"commitDate": "2026-05-07T06:54:02Z",
|
|
26
|
+
"buildDate": "2026-05-07T13:31:43.899Z",
|
|
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/4c512f45cdaf128a400c49b58f4738baf3f00b1e",
|
|
32
|
+
"releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.49.0"
|
|
33
33
|
};
|