@f5xc-salesdemos/xcsh 18.7.0 → 18.8.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": "18.
|
|
4
|
+
"version": "18.8.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",
|
|
@@ -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.
|
|
51
|
-
"@f5xc-salesdemos/pi-agent-core": "18.
|
|
52
|
-
"@f5xc-salesdemos/pi-ai": "18.
|
|
53
|
-
"@f5xc-salesdemos/pi-natives": "18.
|
|
54
|
-
"@f5xc-salesdemos/pi-tui": "18.
|
|
55
|
-
"@f5xc-salesdemos/pi-utils": "18.
|
|
50
|
+
"@f5xc-salesdemos/xcsh-stats": "18.8.1",
|
|
51
|
+
"@f5xc-salesdemos/pi-agent-core": "18.8.1",
|
|
52
|
+
"@f5xc-salesdemos/pi-ai": "18.8.1",
|
|
53
|
+
"@f5xc-salesdemos/pi-natives": "18.8.1",
|
|
54
|
+
"@f5xc-salesdemos/pi-tui": "18.8.1",
|
|
55
|
+
"@f5xc-salesdemos/pi-utils": "18.8.1",
|
|
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.
|
|
21
|
-
"commit": "
|
|
22
|
-
"shortCommit": "
|
|
20
|
+
"version": "18.8.1",
|
|
21
|
+
"commit": "ac9c467e41ac6e1727abf69e928b041703cd4cf2",
|
|
22
|
+
"shortCommit": "ac9c467",
|
|
23
23
|
"branch": "main",
|
|
24
|
-
"tag": "v18.
|
|
25
|
-
"commitDate": "2026-04-
|
|
26
|
-
"buildDate": "2026-04-
|
|
24
|
+
"tag": "v18.8.1",
|
|
25
|
+
"commitDate": "2026-04-22T18:02:42Z",
|
|
26
|
+
"buildDate": "2026-04-22T18:22:44.246Z",
|
|
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.
|
|
31
|
+
"commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/ac9c467e41ac6e1727abf69e928b041703cd4cf2",
|
|
32
|
+
"releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.8.1"
|
|
33
33
|
};
|
|
@@ -201,6 +201,26 @@ 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
|
+
4. **Tier 3** — Only if no single page covers the question, fetch a custom set
|
|
218
|
+
(`/_llms-txt/{topic}.txt`) for a topic-scoped bundle.
|
|
219
|
+
5. **Tier 5/6** — Only if the question requires breadth across the entire product,
|
|
220
|
+
fetch `llms-small.txt` or `llms-full.txt`.
|
|
221
|
+
|
|
222
|
+
Stop at the lowest tier that answers the question. Most questions resolve at Tier 4.
|
|
223
|
+
|
|
204
224
|
# Skills
|
|
205
225
|
|
|
206
226
|
Specialized knowledge packs loaded for this session. Relative paths in skill files resolve against the skill directory.
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import { theme } from "../modes/theme/theme";
|
|
2
|
-
|
|
3
1
|
export type StatusCategory = "connected" | "error" | "warning" | "unknown";
|
|
4
2
|
|
|
3
|
+
// Checkbox emoji indicators shared by the welcome screen and the /profile table.
|
|
4
|
+
// Target terminal: iTerm2 + Nerd Fonts, where emoji presentation and width (2 cells)
|
|
5
|
+
// are consistent. Emoji carry their own coloring — no theme.fg wrapping needed.
|
|
5
6
|
export function formatStatusIcon(status: StatusCategory): string {
|
|
6
7
|
switch (status) {
|
|
7
8
|
case "connected":
|
|
8
|
-
return
|
|
9
|
+
return "✅";
|
|
9
10
|
case "error":
|
|
10
|
-
return
|
|
11
|
+
return "❌";
|
|
11
12
|
case "warning":
|
|
12
|
-
return
|
|
13
|
+
return "⚠️";
|
|
13
14
|
case "unknown":
|
|
14
|
-
return
|
|
15
|
+
return "❓";
|
|
15
16
|
}
|
|
16
17
|
}
|