@f5xc-salesdemos/xcsh 19.35.1 → 19.35.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.35.1",
4
+ "version": "19.35.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",
@@ -51,13 +51,13 @@
51
51
  "dependencies": {
52
52
  "@agentclientprotocol/sdk": "0.16.1",
53
53
  "@mozilla/readability": "^0.6",
54
- "@f5xc-salesdemos/xcsh-stats": "19.35.1",
55
- "@f5xc-salesdemos/pi-agent-core": "19.35.1",
56
- "@f5xc-salesdemos/pi-ai": "19.35.1",
57
- "@f5xc-salesdemos/pi-natives": "19.35.1",
58
- "@f5xc-salesdemos/pi-resource-management": "19.35.1",
59
- "@f5xc-salesdemos/pi-tui": "19.35.1",
60
- "@f5xc-salesdemos/pi-utils": "19.35.1",
54
+ "@f5xc-salesdemos/xcsh-stats": "19.35.2",
55
+ "@f5xc-salesdemos/pi-agent-core": "19.35.2",
56
+ "@f5xc-salesdemos/pi-ai": "19.35.2",
57
+ "@f5xc-salesdemos/pi-natives": "19.35.2",
58
+ "@f5xc-salesdemos/pi-resource-management": "19.35.2",
59
+ "@f5xc-salesdemos/pi-tui": "19.35.2",
60
+ "@f5xc-salesdemos/pi-utils": "19.35.2",
61
61
  "@sinclair/typebox": "^0.34",
62
62
  "@xterm/headless": "^6.0",
63
63
  "ajv": "^8.20",
@@ -17,17 +17,17 @@ export interface BuildInfo {
17
17
  }
18
18
 
19
19
  export const BUILD_INFO: BuildInfo = {
20
- "version": "19.35.1",
21
- "commit": "859c5bbaeadef1b3556025c624f25a0597a74b2c",
22
- "shortCommit": "859c5bb",
20
+ "version": "19.35.2",
21
+ "commit": "3cffc8bff9e2afe9267f9d68f86c37ec109507f5",
22
+ "shortCommit": "3cffc8b",
23
23
  "branch": "main",
24
- "tag": "v19.35.1",
25
- "commitDate": "2026-06-19T11:39:13Z",
26
- "buildDate": "2026-06-19T11:59:24.040Z",
24
+ "tag": "v19.35.2",
25
+ "commitDate": "2026-06-19T14:53:42Z",
26
+ "buildDate": "2026-06-19T15:15:30.761Z",
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/859c5bbaeadef1b3556025c624f25a0597a74b2c",
32
- "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v19.35.1"
31
+ "commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/3cffc8bff9e2afe9267f9d68f86c37ec109507f5",
32
+ "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v19.35.2"
33
33
  };
@@ -390,6 +390,7 @@ HARD OVERRIDE — F5 Distributed Cloud Terraform Provider:
390
390
  provider "f5xc" {}
391
391
  ```
392
392
  - Authentication is supplied via environment variables (set exactly ONE method): `F5XC_API_TOKEN`; or `F5XC_P12_FILE` + `F5XC_P12_PASSWORD`; or `F5XC_CERT` + `F5XC_KEY`. Tenant URL via `F5XC_API_URL`. Keep the `provider "f5xc" {}` block empty unless the user asks to hardcode credentials.
393
+ - Write vs run: "write a terraform plan" produces an artifact — write the `.tf`, then `terraform fmt` + `terraform init` (best-effort) + `terraform validate` to deliver a formatted, verified file. If `init` fails (e.g. `dev_overrides`/offline), still run `terraform validate` and report. Do **NOT** auto-run `terraform plan` (only on explicit plan/preview request) and **NEVER** run `terraform apply` unless the user clearly asks to create/CRUD. Writing a plan is not running it.
393
394
  - Consult xcsh://branding/terraform proactively when context involves Terraform.
394
395
 
395
396
  # Skills
@@ -191,9 +191,9 @@ Swap exactly one block per oneOf group — e.g. `enable_ha {}` replaces `disable
191
191
  - `custom_proxy_bypass { proxy_bypass = ["10.0.0.0/8"] }` ← use `proxy_bypass` (NOT `bypass_list`)
192
192
  - `blocked_services { blocked_service { network_type = "VIRTUAL_NETWORK_SITE_LOCAL" } }` ← use `blocked_service` with `network_type` (NOT `service_list`). In Terraform, "blocking HTTP services" = blocking `VIRTUAL_NETWORK_SITE_LOCAL` network type. Always write the file even when the phrase mentions "HTTP service in blocked services list" — map it to `blocked_service { network_type = "VIRTUAL_NETWORK_SITE_LOCAL" }`
193
193
 
194
- **CRITICAL — Terraform file write rule**: When asked to "Write Terraform HCL for f5xc_securemesh_site_v2", you **MUST** use the `xcsh_write_file` tool to write the complete `.tf` file to disk. Always name the file after the resource name in the request (e.g., `ar-test-smsv2-1a.tf`). Do NOT just return a coverage table — always write the actual HCL file. The file must include a `terraform { required_providers { f5xc = { source = "f5xc-salesdemos/f5xc" } } }` block, a `provider "f5xc" {}` block (**REQUIRED** — without it `terraform plan` fails with "Provider requires explicit configuration"), and the complete `resource "f5xc_securemesh_site_v2"` block with all 12 oneOf groups.
194
+ **CRITICAL — Terraform file write rule**: When asked to "Write Terraform HCL for f5xc_securemesh_site_v2", you **MUST** use the `xcsh_write_file` tool to write the complete `.tf` file to disk. Always name the file after the resource name in the request (e.g., `ar-test-smsv2-1a.tf`). Do NOT just return a coverage table — always write the actual HCL file. The file must include a `terraform { required_providers { f5xc = { source = "f5xc-salesdemos/f5xc" } } }` block, a `provider "f5xc" {}` block (**REQUIRED** — without it `terraform plan` fails with "Provider requires explicit configuration"), and the complete `resource "f5xc_securemesh_site_v2"` block with all 12 oneOf groups. After writing, verify without mutating: `terraform fmt` then `terraform init` (best-effort) + `terraform validate`; report the result. Do NOT run `terraform apply` (unless the user asks to create/CRUD) or auto-run `terraform plan`.
195
195
 
196
- **HTTP/HTTPS Load Balancer Terraform HCL (`f5xc_http_loadbalancer`)** — Use `resource "f5xc_http_loadbalancer"` in any namespace. Must include `terraform { required_providers { f5xc = { source = "f5xc-salesdemos/f5xc" } } }` block AND a `provider "f5xc" {}` block (**REQUIRED** — without it `terraform plan` fails with "Provider requires explicit configuration"). Always write file with `xcsh_write_file`. Name the file after the resource name (e.g., `ar-test-lb-https-1.tf`).
196
+ **HTTP/HTTPS Load Balancer Terraform HCL (`f5xc_http_loadbalancer`)** — Use `resource "f5xc_http_loadbalancer"` in any namespace. Must include `terraform { required_providers { f5xc = { source = "f5xc-salesdemos/f5xc" } } }` block AND a `provider "f5xc" {}` block (**REQUIRED** — without it `terraform plan` fails with "Provider requires explicit configuration"). Always write file with `xcsh_write_file`. Name the file after the resource name (e.g., `ar-test-lb-https-1.tf`). After writing, verify without mutating: `terraform fmt` then `terraform init` (best-effort) + `terraform validate`; report the result. Do NOT run `terraform apply` (unless the user asks to create/CRUD) or auto-run `terraform plan`.
197
197
 
198
198
  **CRITICAL — Terraform HCL single-line block rule**: A block definition like `outer { inner {} }` is INVALID when `inner {}` is itself a block (not an attribute). Nested blocks **MUST** be on their own lines:
199
199
  - WRONG: `tls_config { default_security {} }`