@f5-sales-demo/xcsh 20.4.2 → 20.4.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": "@f5-sales-demo/xcsh",
4
- "version": "20.4.2",
4
+ "version": "20.4.4",
5
5
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
6
6
  "homepage": "https://github.com/f5-sales-demo/xcsh",
7
7
  "author": "Can Boluk",
@@ -60,13 +60,13 @@
60
60
  "dependencies": {
61
61
  "@agentclientprotocol/sdk": "1.3.0",
62
62
  "@mozilla/readability": "^0.6",
63
- "@f5-sales-demo/xcsh-stats": "20.4.2",
64
- "@f5-sales-demo/pi-agent-core": "20.4.2",
65
- "@f5-sales-demo/pi-ai": "20.4.2",
66
- "@f5-sales-demo/pi-natives": "20.4.2",
67
- "@f5-sales-demo/pi-resource-management": "20.4.2",
68
- "@f5-sales-demo/pi-tui": "20.4.2",
69
- "@f5-sales-demo/pi-utils": "20.4.2",
63
+ "@f5-sales-demo/xcsh-stats": "20.4.4",
64
+ "@f5-sales-demo/pi-agent-core": "20.4.4",
65
+ "@f5-sales-demo/pi-ai": "20.4.4",
66
+ "@f5-sales-demo/pi-natives": "20.4.4",
67
+ "@f5-sales-demo/pi-resource-management": "20.4.4",
68
+ "@f5-sales-demo/pi-tui": "20.4.4",
69
+ "@f5-sales-demo/pi-utils": "20.4.4",
70
70
  "@sinclair/typebox": "^0.34",
71
71
  "@xterm/headless": "^6.0",
72
72
  "ajv": "^8.20",
@@ -23,10 +23,10 @@ interface ReleaseInfo {
23
23
 
24
24
  /**
25
25
  * Parse update subcommand arguments.
26
- * Returns undefined if not an update command.
26
+ * Returns undefined if not a self-update command.
27
27
  */
28
28
  export function parseUpdateArgs(args: string[]): { force: boolean; check: boolean } | undefined {
29
- if (args.length === 0 || args[0] !== "update") {
29
+ if (args.length === 0 || args[0] !== "self-update") {
30
30
  return undefined;
31
31
  }
32
32
 
@@ -17,17 +17,17 @@ export interface BuildInfo {
17
17
  }
18
18
 
19
19
  export const BUILD_INFO: BuildInfo = {
20
- "version": "20.4.2",
21
- "commit": "b85f1346a0ed047c05151f127ba9628612b386a3",
22
- "shortCommit": "b85f134",
20
+ "version": "20.4.4",
21
+ "commit": "5ce2d7f85623545438b57f742f095a5be4352be0",
22
+ "shortCommit": "5ce2d7f",
23
23
  "branch": "main",
24
- "tag": "v20.4.2",
25
- "commitDate": "2026-08-05T05:46:35Z",
26
- "buildDate": "2026-08-05T06:17:35.937Z",
24
+ "tag": "v20.4.4",
25
+ "commitDate": "2026-08-05T08:27:37Z",
26
+ "buildDate": "2026-08-05T08:57:05.754Z",
27
27
  "dirty": true,
28
28
  "prNumber": "",
29
29
  "repoUrl": "https://github.com/f5-sales-demo/xcsh",
30
30
  "repoSlug": "f5-sales-demo/xcsh",
31
- "commitUrl": "https://github.com/f5-sales-demo/xcsh/commit/b85f1346a0ed047c05151f127ba9628612b386a3",
32
- "releaseUrl": "https://github.com/f5-sales-demo/xcsh/releases/tag/v20.4.2"
31
+ "commitUrl": "https://github.com/f5-sales-demo/xcsh/commit/5ce2d7f85623545438b57f742f095a5be4352be0",
32
+ "releaseUrl": "https://github.com/f5-sales-demo/xcsh/releases/tag/v20.4.4"
33
33
  };