@f5xc-salesdemos/xcsh 19.20.0 → 19.20.1

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.20.0",
4
+ "version": "19.20.1",
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.20.0",
54
- "@f5xc-salesdemos/pi-agent-core": "19.20.0",
55
- "@f5xc-salesdemos/pi-ai": "19.20.0",
56
- "@f5xc-salesdemos/pi-natives": "19.20.0",
57
- "@f5xc-salesdemos/pi-tui": "19.20.0",
58
- "@f5xc-salesdemos/pi-utils": "19.20.0",
53
+ "@f5xc-salesdemos/xcsh-stats": "19.20.1",
54
+ "@f5xc-salesdemos/pi-agent-core": "19.20.1",
55
+ "@f5xc-salesdemos/pi-ai": "19.20.1",
56
+ "@f5xc-salesdemos/pi-natives": "19.20.1",
57
+ "@f5xc-salesdemos/pi-tui": "19.20.1",
58
+ "@f5xc-salesdemos/pi-utils": "19.20.1",
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.20.0",
21
- "commit": "218c1d5ef18212bd9c034ea86f80927094c941c1",
22
- "shortCommit": "218c1d5",
20
+ "version": "19.20.1",
21
+ "commit": "0ecbb73107f9ece06f7f82f243ff413ff30d6f06",
22
+ "shortCommit": "0ecbb73",
23
23
  "branch": "main",
24
- "tag": "v19.20.0",
25
- "commitDate": "2026-06-09T03:36:14Z",
26
- "buildDate": "2026-06-09T04:39:54.571Z",
24
+ "tag": "v19.20.1",
25
+ "commitDate": "2026-06-09T12:19:32Z",
26
+ "buildDate": "2026-06-09T12:49:05.875Z",
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/218c1d5ef18212bd9c034ea86f80927094c941c1",
32
- "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v19.20.0"
31
+ "commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/0ecbb73107f9ece06f7f82f243ff413ff30d6f06",
32
+ "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v19.20.1"
33
33
  };
@@ -328,12 +328,26 @@ export class InternalDocsProtocolHandler implements ProtocolHandler {
328
328
  const profile = shouldSeed ? await seedProfile() : await loadProfile();
329
329
  const content = renderProfileMarkdown(profile);
330
330
 
331
+ const hasOwnership = profile._fieldOwnership && Object.keys(profile._fieldOwnership).length > 0;
332
+ const notes: string[] = [
333
+ "This profile is the authoritative source for person data (manager, partner, territories, role).",
334
+ "Do NOT query Salesforce or other services for fields that are already populated here.",
335
+ ];
336
+ if (hasOwnership) {
337
+ notes.push(
338
+ `Fields owned by external sources: ${Object.entries(profile._fieldOwnership!)
339
+ .map(([k, v]) => `${k} (${v})`)
340
+ .join(", ")}. These are automatically kept in sync.`,
341
+ );
342
+ }
343
+
331
344
  return {
332
345
  url: url.href,
333
346
  content,
334
347
  contentType: "text/markdown",
335
348
  size: Buffer.byteLength(content, "utf-8"),
336
349
  sourcePath: `xcsh://${USER_ROUTE}`,
350
+ notes,
337
351
  };
338
352
  }
339
353