@f5xc-salesdemos/xcsh 19.12.0 → 19.12.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": "19.12.
|
|
4
|
+
"version": "19.12.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",
|
|
@@ -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.12.
|
|
54
|
-
"@f5xc-salesdemos/pi-agent-core": "19.12.
|
|
55
|
-
"@f5xc-salesdemos/pi-ai": "19.12.
|
|
56
|
-
"@f5xc-salesdemos/pi-natives": "19.12.
|
|
57
|
-
"@f5xc-salesdemos/pi-tui": "19.12.
|
|
58
|
-
"@f5xc-salesdemos/pi-utils": "19.12.
|
|
53
|
+
"@f5xc-salesdemos/xcsh-stats": "19.12.2",
|
|
54
|
+
"@f5xc-salesdemos/pi-agent-core": "19.12.2",
|
|
55
|
+
"@f5xc-salesdemos/pi-ai": "19.12.2",
|
|
56
|
+
"@f5xc-salesdemos/pi-natives": "19.12.2",
|
|
57
|
+
"@f5xc-salesdemos/pi-tui": "19.12.2",
|
|
58
|
+
"@f5xc-salesdemos/pi-utils": "19.12.2",
|
|
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.12.
|
|
21
|
-
"commit": "
|
|
22
|
-
"shortCommit": "
|
|
20
|
+
"version": "19.12.2",
|
|
21
|
+
"commit": "5b620fc6025c5d8119a808a6e0255cdfd976ae49",
|
|
22
|
+
"shortCommit": "5b620fc",
|
|
23
23
|
"branch": "main",
|
|
24
|
-
"tag": "v19.12.
|
|
25
|
-
"commitDate": "2026-06-
|
|
26
|
-
"buildDate": "2026-06-
|
|
24
|
+
"tag": "v19.12.2",
|
|
25
|
+
"commitDate": "2026-06-07T01:08:58Z",
|
|
26
|
+
"buildDate": "2026-06-07T01:32:18.341Z",
|
|
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.12.
|
|
31
|
+
"commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/5b620fc6025c5d8119a808a6e0255cdfd976ae49",
|
|
32
|
+
"releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v19.12.2"
|
|
33
33
|
};
|
|
@@ -23,6 +23,8 @@ API calls to the same F5 XC tenant reuse a single TLS connection — sequential
|
|
|
23
23
|
**Relationship queries**: When the batch response says "Inventory complete" and includes a `Resource relationships:` section, the specs and relationships are already fully fetched. Answer directly from that data. Do NOT make additional GET calls to read individual resources you already have from the batch.
|
|
24
24
|
**Tenant-wide queries**: When asked about resources across ALL namespaces (e.g. "show all LBs in the entire tenant"), use `paths: ["*"]` with `params: {namespace: "*"}` to batch every namespace in ONE call. Do NOT list namespaces first — the wildcard handles discovery automatically.
|
|
25
25
|
|
|
26
|
+
**Deleting resources** — when asked to delete, remove, or destroy an F5 XC resource, you **MUST** call `xcsh_api` with `method: "DELETE"` and `path` set to the resource's API endpoint including the resource name, e.g. `DELETE /api/config/namespaces/{namespace}/http_loadbalancers/{name}`. Pass `namespace` and `name` via `params`. No `payload` is needed for standard deletes. Do NOT respond with explanatory text instead of making the DELETE call — execute the deletion directly.
|
|
27
|
+
|
|
26
28
|
**HTTP load balancer with origin pool** — when asked to create an LB routing to a named pool, use this exact payload structure (POST to `http_loadbalancers`):
|
|
27
29
|
|
|
28
30
|
```json
|