@f5xc-salesdemos/xcsh 19.29.3 → 19.29.4

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.29.3",
4
+ "version": "19.29.4",
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.29.3",
54
- "@f5xc-salesdemos/pi-agent-core": "19.29.3",
55
- "@f5xc-salesdemos/pi-ai": "19.29.3",
56
- "@f5xc-salesdemos/pi-natives": "19.29.3",
57
- "@f5xc-salesdemos/pi-tui": "19.29.3",
58
- "@f5xc-salesdemos/pi-utils": "19.29.3",
53
+ "@f5xc-salesdemos/xcsh-stats": "19.29.4",
54
+ "@f5xc-salesdemos/pi-agent-core": "19.29.4",
55
+ "@f5xc-salesdemos/pi-ai": "19.29.4",
56
+ "@f5xc-salesdemos/pi-natives": "19.29.4",
57
+ "@f5xc-salesdemos/pi-tui": "19.29.4",
58
+ "@f5xc-salesdemos/pi-utils": "19.29.4",
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.29.3",
21
- "commit": "424e6521b291a2dc79a47b4c5c04f5a2233d9b5c",
22
- "shortCommit": "424e652",
20
+ "version": "19.29.4",
21
+ "commit": "27ecdaf573dab102cede3433ad847157cdd81b6f",
22
+ "shortCommit": "27ecdaf",
23
23
  "branch": "main",
24
- "tag": "v19.29.3",
25
- "commitDate": "2026-06-13T19:46:11Z",
26
- "buildDate": "2026-06-13T20:18:30.966Z",
24
+ "tag": "v19.29.4",
25
+ "commitDate": "2026-06-14T04:45:58Z",
26
+ "buildDate": "2026-06-14T05:06:43.027Z",
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/424e6521b291a2dc79a47b4c5c04f5a2233d9b5c",
32
- "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v19.29.3"
31
+ "commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/27ecdaf573dab102cede3433ad847157cdd81b6f",
32
+ "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v19.29.4"
33
33
  };
@@ -952,7 +952,10 @@ export class InteractiveMode implements InteractiveModeContext {
952
952
  );
953
953
  if (!confirmed) continue;
954
954
 
955
- this.ui.stop();
955
+ // Drain pending terminal input (e.g. an in-flight OSC 11 poll response)
956
+ // before dropping raw mode, so it is consumed here instead of echoed as
957
+ // gibberish by the terminal while the cooked-mode subprocess runs.
958
+ await this.ui.suspendForSubprocess();
956
959
  try {
957
960
  const proc = Bun.spawn(service.command, {
958
961
  stdin: "inherit",