@f5xc-salesdemos/xcsh 18.8.0 → 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.0",
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.0",
51
- "@f5xc-salesdemos/pi-agent-core": "18.8.0",
52
- "@f5xc-salesdemos/pi-ai": "18.8.0",
53
- "@f5xc-salesdemos/pi-natives": "18.8.0",
54
- "@f5xc-salesdemos/pi-tui": "18.8.0",
55
- "@f5xc-salesdemos/pi-utils": "18.8.0",
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.0",
21
- "commit": "04354b390e8a7be97b6b661c307a8e9e5cd76cd3",
22
- "shortCommit": "04354b3",
20
+ "version": "18.8.2",
21
+ "commit": "b67646bd5096b169019d794fd0f894f2969696d4",
22
+ "shortCommit": "b67646b",
23
23
  "branch": "main",
24
- "tag": "v18.8.0",
25
- "commitDate": "2026-04-22T08:12:25Z",
26
- "buildDate": "2026-04-22T08:32:16.070Z",
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/04354b390e8a7be97b6b661c307a8e9e5cd76cd3",
32
- "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.8.0"
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
  };
@@ -201,6 +201,38 @@ tier you need: a custom set (`/_llms-txt/{topic}.txt`), a single page (`/{slug}.
201
201
  or `llms-small.txt` / `llms-full.txt` when breadth is required. Content is live —
202
202
  never assume a cached snapshot is current.
203
203
 
204
+ ## Routing discipline
205
+
206
+ You **MUST NOT** web-search for F5 XC product information before exhausting the
207
+ llms.txt hierarchy. The hierarchy is the authoritative source; external results are
208
+ supplementary, not primary.
209
+
210
+ Follow the cascade sequentially — do not fetch multiple tiers in parallel:
211
+
212
+ 1. **Tier 1** — Read `docs/llms.txt`. Identify which product answers the question.
213
+ 2. **Tier 2** — Read that product's `llms.txt`. Read the `## Sections` list.
214
+ 3. **Tier 4** — Pick the most specific page from Sections. To fetch its content,
215
+ take the Sections URL, strip the trailing `/`, append `.md`.
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.
218
+ 4. **Tier 3** — Only if no single page covers the question, fetch a custom set
219
+ (`/_llms-txt/{topic}.txt`) for a topic-scoped bundle.
220
+ 5. **Tier 5/6** — Only if the question requires breadth across the entire product,
221
+ fetch `llms-small.txt` or `llms-full.txt`.
222
+
223
+ Stop at the lowest tier that answers the question. Most questions resolve at Tier 4.
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
+
204
236
  # Skills
205
237
 
206
238
  Specialized knowledge packs loaded for this session. Relative paths in skill files resolve against the skill directory.