@f5xc-salesdemos/xcsh 18.18.3 → 18.19.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/CHANGELOG.md CHANGED
@@ -2,7 +2,13 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ## [18.18.0] - 2026-04-25
5
+ ## [18.18.4] - 2026-04-26
6
+
7
+
8
+ ### Fixed
9
+
10
+ - Fixed gutter width propagation in the fallback tool renderer: `#formatToolExecution()` now receives the actual available width at render-time and uses it for line truncation instead of a hardcoded 80-column limit. On narrow terminals (<82 cols) this prevents content wider than the gutter-adjusted viewport; on wide terminals it allows longer output lines. ([#117](https://github.com/f5xc-salesdemos/xcsh/issues/117))
11
+
6
12
 
7
13
  ### Changed
8
14
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@f5xc-salesdemos/xcsh",
4
- "version": "18.18.3",
4
+ "version": "18.19.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",
@@ -47,12 +47,12 @@
47
47
  "dependencies": {
48
48
  "@agentclientprotocol/sdk": "0.16.1",
49
49
  "@mozilla/readability": "^0.6",
50
- "@f5xc-salesdemos/xcsh-stats": "18.18.3",
51
- "@f5xc-salesdemos/pi-agent-core": "18.18.3",
52
- "@f5xc-salesdemos/pi-ai": "18.18.3",
53
- "@f5xc-salesdemos/pi-natives": "18.18.3",
54
- "@f5xc-salesdemos/pi-tui": "18.18.3",
55
- "@f5xc-salesdemos/pi-utils": "18.18.3",
50
+ "@f5xc-salesdemos/xcsh-stats": "18.19.0",
51
+ "@f5xc-salesdemos/pi-agent-core": "18.19.0",
52
+ "@f5xc-salesdemos/pi-ai": "18.19.0",
53
+ "@f5xc-salesdemos/pi-natives": "18.19.0",
54
+ "@f5xc-salesdemos/pi-tui": "18.19.0",
55
+ "@f5xc-salesdemos/pi-utils": "18.19.0",
56
56
  "@sinclair/typebox": "^0.34",
57
57
  "@xterm/headless": "^6.0",
58
58
  "ajv": "^8.18",
@@ -433,6 +433,10 @@
433
433
  "types": "./src/secrets/*.ts",
434
434
  "import": "./src/secrets/*.ts"
435
435
  },
436
+ "./services/*": {
437
+ "types": "./src/services/*.ts",
438
+ "import": "./src/services/*.ts"
439
+ },
436
440
  "./session/*": {
437
441
  "types": "./src/session/*.ts",
438
442
  "import": "./src/session/*.ts"
@@ -17,17 +17,17 @@ export interface BuildInfo {
17
17
  }
18
18
 
19
19
  export const BUILD_INFO: BuildInfo = {
20
- "version": "18.18.3",
21
- "commit": "4ab7024cf2ff50627d2403f00fbb31ef9a8f350c",
22
- "shortCommit": "4ab7024",
20
+ "version": "18.19.0",
21
+ "commit": "fe4ea3cc7fa01646c63e42957272bbf427c1e9e8",
22
+ "shortCommit": "fe4ea3c",
23
23
  "branch": "main",
24
- "tag": "v18.18.3",
25
- "commitDate": "2026-04-25T21:51:43Z",
26
- "buildDate": "2026-04-25T22:13:22.836Z",
24
+ "tag": "v18.19.0",
25
+ "commitDate": "2026-04-27T07:01:24Z",
26
+ "buildDate": "2026-04-27T07:23:45.386Z",
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/4ab7024cf2ff50627d2403f00fbb31ef9a8f350c",
32
- "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.18.3"
31
+ "commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/fe4ea3cc7fa01646c63e42957272bbf427c1e9e8",
32
+ "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.19.0"
33
33
  };