@f5-sales-demo/xcsh 19.85.0 → 19.85.2
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": "19.85.
|
|
4
|
+
"version": "19.85.2",
|
|
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",
|
|
@@ -56,13 +56,13 @@
|
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@agentclientprotocol/sdk": "0.16.1",
|
|
58
58
|
"@mozilla/readability": "^0.6",
|
|
59
|
-
"@f5-sales-demo/xcsh-stats": "19.85.
|
|
60
|
-
"@f5-sales-demo/pi-agent-core": "19.85.
|
|
61
|
-
"@f5-sales-demo/pi-ai": "19.85.
|
|
62
|
-
"@f5-sales-demo/pi-natives": "19.85.
|
|
63
|
-
"@f5-sales-demo/pi-resource-management": "19.85.
|
|
64
|
-
"@f5-sales-demo/pi-tui": "19.85.
|
|
65
|
-
"@f5-sales-demo/pi-utils": "19.85.
|
|
59
|
+
"@f5-sales-demo/xcsh-stats": "19.85.2",
|
|
60
|
+
"@f5-sales-demo/pi-agent-core": "19.85.2",
|
|
61
|
+
"@f5-sales-demo/pi-ai": "19.85.2",
|
|
62
|
+
"@f5-sales-demo/pi-natives": "19.85.2",
|
|
63
|
+
"@f5-sales-demo/pi-resource-management": "19.85.2",
|
|
64
|
+
"@f5-sales-demo/pi-tui": "19.85.2",
|
|
65
|
+
"@f5-sales-demo/pi-utils": "19.85.2",
|
|
66
66
|
"@sinclair/typebox": "^0.34",
|
|
67
67
|
"@xterm/headless": "^6.0",
|
|
68
68
|
"ajv": "^8.20",
|
|
@@ -557,13 +557,14 @@ function titleFromUrl(url: string): string {
|
|
|
557
557
|
|
|
558
558
|
/**
|
|
559
559
|
* Trailing characters a bare-URL match may greedily swallow at a markdown/prose
|
|
560
|
-
* boundary — markdown emphasis (`*_~`) and sentence/wrap
|
|
561
|
-
* effectively never ends in these, so trimming them yields
|
|
562
|
-
* (e.g. `**https://…/llms.txt**`
|
|
563
|
-
*
|
|
560
|
+
* boundary — markdown emphasis + code (`*_~` and backtick) and sentence/wrap
|
|
561
|
+
* punctuation. A real URL effectively never ends in these, so trimming them yields
|
|
562
|
+
* the intended link (e.g. `**https://…/llms.txt**` or a code-wrapped
|
|
563
|
+
* `` `https://…/llms.txt` `` → `https://…/llms.txt`). The markdown-link branch is
|
|
564
|
+
* bounded by its closing `)` and needs no trimming.
|
|
564
565
|
*/
|
|
565
566
|
function trimTrailingMarkup(url: string): string {
|
|
566
|
-
return url.replace(/[*_
|
|
567
|
+
return url.replace(/[*_~`,.;:!?'")\]}>]+$/, "");
|
|
567
568
|
}
|
|
568
569
|
|
|
569
570
|
export function extractReferences(msg: AssistantMessage): ChatReference[] {
|
|
@@ -17,17 +17,17 @@ export interface BuildInfo {
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
export const BUILD_INFO: BuildInfo = {
|
|
20
|
-
"version": "19.85.
|
|
21
|
-
"commit": "
|
|
22
|
-
"shortCommit": "
|
|
20
|
+
"version": "19.85.2",
|
|
21
|
+
"commit": "a068b469d7c985c518847bf2862acabc1605f490",
|
|
22
|
+
"shortCommit": "a068b46",
|
|
23
23
|
"branch": "main",
|
|
24
|
-
"tag": "v19.85.
|
|
25
|
-
"commitDate": "2026-07-
|
|
26
|
-
"buildDate": "2026-07-
|
|
24
|
+
"tag": "v19.85.2",
|
|
25
|
+
"commitDate": "2026-07-23T18:30:49Z",
|
|
26
|
+
"buildDate": "2026-07-23T18:54:23.656Z",
|
|
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/
|
|
32
|
-
"releaseUrl": "https://github.com/f5-sales-demo/xcsh/releases/tag/v19.85.
|
|
31
|
+
"commitUrl": "https://github.com/f5-sales-demo/xcsh/commit/a068b469d7c985c518847bf2862acabc1605f490",
|
|
32
|
+
"releaseUrl": "https://github.com/f5-sales-demo/xcsh/releases/tag/v19.85.2"
|
|
33
33
|
};
|