@f5xc-salesdemos/xcsh 18.77.1 → 18.77.3

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": "18.77.1",
4
+ "version": "18.77.3",
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.77.1",
52
- "@f5xc-salesdemos/pi-agent-core": "18.77.1",
53
- "@f5xc-salesdemos/pi-ai": "18.77.1",
54
- "@f5xc-salesdemos/pi-natives": "18.77.1",
55
- "@f5xc-salesdemos/pi-tui": "18.77.1",
56
- "@f5xc-salesdemos/pi-utils": "18.77.1",
51
+ "@f5xc-salesdemos/xcsh-stats": "18.77.3",
52
+ "@f5xc-salesdemos/pi-agent-core": "18.77.3",
53
+ "@f5xc-salesdemos/pi-ai": "18.77.3",
54
+ "@f5xc-salesdemos/pi-natives": "18.77.3",
55
+ "@f5xc-salesdemos/pi-tui": "18.77.3",
56
+ "@f5xc-salesdemos/pi-utils": "18.77.3",
57
57
  "@sinclair/typebox": "^0.34",
58
58
  "@xterm/headless": "^6.0",
59
59
  "ajv": "^8.18",
@@ -17,17 +17,17 @@ export interface BuildInfo {
17
17
  }
18
18
 
19
19
  export const BUILD_INFO: BuildInfo = {
20
- "version": "18.77.1",
21
- "commit": "892a2fd604ed3fe5dece27147eb4d9fb4d968450",
22
- "shortCommit": "892a2fd",
20
+ "version": "18.77.3",
21
+ "commit": "97623491edfb9ed7a9da8c71c074d24d51a17a9d",
22
+ "shortCommit": "9762349",
23
23
  "branch": "main",
24
- "tag": "v18.77.1",
25
- "commitDate": "2026-05-23T17:07:44-04:00",
26
- "buildDate": "2026-05-23T22:08:01.020Z",
24
+ "tag": "v18.77.3",
25
+ "commitDate": "2026-05-23T22:55:12Z",
26
+ "buildDate": "2026-05-23T23:14:49.552Z",
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/892a2fd604ed3fe5dece27147eb4d9fb4d968450",
32
- "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.77.1"
31
+ "commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/97623491edfb9ed7a9da8c71c074d24d51a17a9d",
32
+ "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.77.3"
33
33
  };
@@ -629,6 +629,9 @@ export class InteractiveMode implements InteractiveModeContext {
629
629
 
630
630
  #renderTodoList(): void {
631
631
  this.todoContainer.clear();
632
+ if (!settings.get("todo.verbose")) {
633
+ return;
634
+ }
632
635
  const phases = this.todoPhases.filter(phase => phase.tasks.length > 0);
633
636
  if (phases.length === 0) {
634
637
  return;