@f5xc-salesdemos/xcsh 18.8.1 → 18.8.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": "@f5xc-salesdemos/xcsh",
|
|
4
|
-
"version": "18.8.
|
|
4
|
+
"version": "18.8.2",
|
|
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",
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@agentclientprotocol/sdk": "0.16.1",
|
|
49
49
|
"@mozilla/readability": "^0.6",
|
|
50
|
-
"@f5xc-salesdemos/xcsh-stats": "18.8.
|
|
51
|
-
"@f5xc-salesdemos/pi-agent-core": "18.8.
|
|
52
|
-
"@f5xc-salesdemos/pi-ai": "18.8.
|
|
53
|
-
"@f5xc-salesdemos/pi-natives": "18.8.
|
|
54
|
-
"@f5xc-salesdemos/pi-tui": "18.8.
|
|
55
|
-
"@f5xc-salesdemos/pi-utils": "18.8.
|
|
50
|
+
"@f5xc-salesdemos/xcsh-stats": "18.8.2",
|
|
51
|
+
"@f5xc-salesdemos/pi-agent-core": "18.8.2",
|
|
52
|
+
"@f5xc-salesdemos/pi-ai": "18.8.2",
|
|
53
|
+
"@f5xc-salesdemos/pi-natives": "18.8.2",
|
|
54
|
+
"@f5xc-salesdemos/pi-tui": "18.8.2",
|
|
55
|
+
"@f5xc-salesdemos/pi-utils": "18.8.2",
|
|
56
56
|
"@sinclair/typebox": "^0.34",
|
|
57
57
|
"@xterm/headless": "^6.0",
|
|
58
58
|
"ajv": "^8.18",
|
|
@@ -17,17 +17,17 @@ export interface BuildInfo {
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
export const BUILD_INFO: BuildInfo = {
|
|
20
|
-
"version": "18.8.
|
|
21
|
-
"commit": "
|
|
22
|
-
"shortCommit": "
|
|
20
|
+
"version": "18.8.2",
|
|
21
|
+
"commit": "b67646bd5096b169019d794fd0f894f2969696d4",
|
|
22
|
+
"shortCommit": "b67646b",
|
|
23
23
|
"branch": "main",
|
|
24
|
-
"tag": "v18.8.
|
|
25
|
-
"commitDate": "2026-04-
|
|
26
|
-
"buildDate": "2026-04-
|
|
24
|
+
"tag": "v18.8.2",
|
|
25
|
+
"commitDate": "2026-04-22T19:12:35Z",
|
|
26
|
+
"buildDate": "2026-04-22T19:48:35.804Z",
|
|
27
27
|
"dirty": false,
|
|
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/
|
|
32
|
-
"releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.8.
|
|
31
|
+
"commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/b67646bd5096b169019d794fd0f894f2969696d4",
|
|
32
|
+
"releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.8.2"
|
|
33
33
|
};
|
|
@@ -214,6 +214,7 @@ Follow the cascade sequentially — do not fetch multiple tiers in parallel:
|
|
|
214
214
|
3. **Tier 4** — Pick the most specific page from Sections. To fetch its content,
|
|
215
215
|
take the Sections URL, strip the trailing `/`, append `.md`.
|
|
216
216
|
Example: `https://…/ddos/bigip-configuration/` → fetch `https://…/ddos/bigip-configuration.md`
|
|
217
|
+
If 404, try appending `/index.md` instead. Nested paths follow the same rule at the leaf.
|
|
217
218
|
4. **Tier 3** — Only if no single page covers the question, fetch a custom set
|
|
218
219
|
(`/_llms-txt/{topic}.txt`) for a topic-scoped bundle.
|
|
219
220
|
5. **Tier 5/6** — Only if the question requires breadth across the entire product,
|
|
@@ -221,6 +222,17 @@ Follow the cascade sequentially — do not fetch multiple tiers in parallel:
|
|
|
221
222
|
|
|
222
223
|
Stop at the lowest tier that answers the question. Most questions resolve at Tier 4.
|
|
223
224
|
|
|
225
|
+
**Multi-product questions:** Read T1, identify all relevant products, then fetch each
|
|
226
|
+
product's T2 sequentially. Once you have the right pages identified, fetch T4 endpoints
|
|
227
|
+
in parallel.
|
|
228
|
+
|
|
229
|
+
**Fallback:** If a product's `llms.txt` returns 404, try `llms-small.txt` directly.
|
|
230
|
+
If that also 404s, the product has no documentation — acknowledge this to the user.
|
|
231
|
+
|
|
232
|
+
**Web search re-entry:** The hierarchy is exhausted when the relevant T4 page exists
|
|
233
|
+
and answers the question, OR when T3 and T5 have been checked without resolution.
|
|
234
|
+
Only then is web search permitted — label external results as supplementary.
|
|
235
|
+
|
|
224
236
|
# Skills
|
|
225
237
|
|
|
226
238
|
Specialized knowledge packs loaded for this session. Relative paths in skill files resolve against the skill directory.
|