@f5xc-salesdemos/xcsh 19.18.1 → 19.18.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": "19.18.1",
4
+ "version": "19.18.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",
@@ -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.18.1",
54
- "@f5xc-salesdemos/pi-agent-core": "19.18.1",
55
- "@f5xc-salesdemos/pi-ai": "19.18.1",
56
- "@f5xc-salesdemos/pi-natives": "19.18.1",
57
- "@f5xc-salesdemos/pi-tui": "19.18.1",
58
- "@f5xc-salesdemos/pi-utils": "19.18.1",
53
+ "@f5xc-salesdemos/xcsh-stats": "19.18.3",
54
+ "@f5xc-salesdemos/pi-agent-core": "19.18.3",
55
+ "@f5xc-salesdemos/pi-ai": "19.18.3",
56
+ "@f5xc-salesdemos/pi-natives": "19.18.3",
57
+ "@f5xc-salesdemos/pi-tui": "19.18.3",
58
+ "@f5xc-salesdemos/pi-utils": "19.18.3",
59
59
  "@sinclair/typebox": "^0.34",
60
60
  "@xterm/headless": "^6.0",
61
61
  "ajv": "^8.20",
@@ -15,8 +15,7 @@ import { loadCapability } from "../../discovery";
15
15
  import { getExtensionNameFromPath } from "../../discovery/helpers";
16
16
  import type { ExecOptions } from "../../exec/exec";
17
17
  import { execCommand } from "../../exec/exec";
18
- import type { ProfileCollector } from "../../internal-urls/profile-collectors";
19
- import { registerProfileCollector as addProfileCollector } from "../../internal-urls/profile-collectors";
18
+ import { PROFILE_COLLECTORS, type ProfileCollector } from "../../internal-urls/profile-collectors";
20
19
  import type { CustomMessage } from "../../session/messages";
21
20
  import { EventBus } from "../../utils/event-bus";
22
21
  import { getAllPluginExtensionPaths } from "../plugins/loader";
@@ -184,7 +183,10 @@ class ConcreteExtensionAPI implements ExtensionAPI, IExtensionRuntime {
184
183
  }
185
184
 
186
185
  registerProfileCollector(collector: ProfileCollector): void {
187
- addProfileCollector(collector);
186
+ const arr = PROFILE_COLLECTORS as ProfileCollector[];
187
+ if (!arr.some(c => c.id === collector.id)) {
188
+ arr.push(collector);
189
+ }
188
190
  }
189
191
 
190
192
  getFlag(name: string): boolean | string | undefined {
@@ -17,17 +17,17 @@ export interface BuildInfo {
17
17
  }
18
18
 
19
19
  export const BUILD_INFO: BuildInfo = {
20
- "version": "19.18.1",
21
- "commit": "ec1490fb957e0ae1a5a7f5feada6e80449b65ff5",
22
- "shortCommit": "ec1490f",
20
+ "version": "19.18.3",
21
+ "commit": "2d7dbf19e76170caab879fcc60cb742363d56e7a",
22
+ "shortCommit": "2d7dbf1",
23
23
  "branch": "main",
24
- "tag": "v19.18.1",
25
- "commitDate": "2026-06-08T18:02:23Z",
26
- "buildDate": "2026-06-08T18:27:58.930Z",
24
+ "tag": "v19.18.3",
25
+ "commitDate": "2026-06-08T19:42:26Z",
26
+ "buildDate": "2026-06-08T20:10:48.839Z",
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/ec1490fb957e0ae1a5a7f5feada6e80449b65ff5",
32
- "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v19.18.1"
31
+ "commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/2d7dbf19e76170caab879fcc60cb742363d56e7a",
32
+ "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v19.18.3"
33
33
  };
@@ -72,3 +72,8 @@ export function unregisterProfileCollector(id: string): boolean {
72
72
  _collectors.splice(idx, 1);
73
73
  return true;
74
74
  }
75
+
76
+ export const collectorRegistry = {
77
+ register: registerProfileCollector,
78
+ unregister: unregisterProfileCollector,
79
+ };