@f5xc-salesdemos/xcsh 18.1.0 → 18.1.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/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [18.1.1] - 2026-04-20
6
+
7
+ ### Fixed
8
+
9
+ - Widened the `defaultThinkingLevel` schema enum to include `"off"`, which was already a supported runtime value via `resolveThinkingLevelForModel` but was not declared as a valid schema value. This closes a type-safety gap where programmatic callers (tests, config.yml edits) could set `"off"` without a `SettingValue` type narrowing it. The `/settings` UI dropdown is unchanged; the widening is schema-level only.
10
+
5
11
  ### Changed
6
12
 
7
13
  - Flipped eight user-facing factory defaults for new users:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@f5xc-salesdemos/xcsh",
4
- "version": "18.1.0",
4
+ "version": "18.1.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.1.0",
51
- "@f5xc-salesdemos/pi-agent-core": "18.1.0",
52
- "@f5xc-salesdemos/pi-ai": "18.1.0",
53
- "@f5xc-salesdemos/pi-natives": "18.1.0",
54
- "@f5xc-salesdemos/pi-tui": "18.1.0",
55
- "@f5xc-salesdemos/pi-utils": "18.1.0",
50
+ "@f5xc-salesdemos/xcsh-stats": "18.1.1",
51
+ "@f5xc-salesdemos/pi-agent-core": "18.1.1",
52
+ "@f5xc-salesdemos/pi-ai": "18.1.1",
53
+ "@f5xc-salesdemos/pi-natives": "18.1.1",
54
+ "@f5xc-salesdemos/pi-tui": "18.1.1",
55
+ "@f5xc-salesdemos/pi-utils": "18.1.1",
56
56
  "@sinclair/typebox": "^0.34",
57
57
  "@xterm/headless": "^6.0",
58
58
  "ajv": "^8.18",
@@ -437,7 +437,10 @@ export const SETTINGS_SCHEMA = {
437
437
  // Reasoning and prompts
438
438
  defaultThinkingLevel: {
439
439
  type: "enum",
440
- values: THINKING_EFFORTS,
440
+ // "off" is a valid runtime value (no reasoning) but not in THINKING_EFFORTS; widen the
441
+ // schema to match so programmatic callers and config.yml can set it without a type hole.
442
+ // The /settings UI dropdown intentionally still shows only the 5 efforts.
443
+ values: ["off", ...THINKING_EFFORTS] as const,
441
444
  default: "xhigh",
442
445
  ui: {
443
446
  tab: "model",
@@ -17,17 +17,17 @@ export interface BuildInfo {
17
17
  }
18
18
 
19
19
  export const BUILD_INFO: BuildInfo = {
20
- "version": "18.1.0",
21
- "commit": "caf6a7fa027b863b9f421a8d8cc7cc4df2ec8136",
22
- "shortCommit": "caf6a7f",
20
+ "version": "18.1.1",
21
+ "commit": "bfe531aa306c9c3142fa1d885a8fe17b607e2307",
22
+ "shortCommit": "bfe531a",
23
23
  "branch": "main",
24
- "tag": "v18.1.0",
25
- "commitDate": "2026-04-20T07:08:46Z",
26
- "buildDate": "2026-04-20T07:32:00.751Z",
24
+ "tag": "v18.1.1",
25
+ "commitDate": "2026-04-20T16:14:03Z",
26
+ "buildDate": "2026-04-20T16:31:57.408Z",
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/caf6a7fa027b863b9f421a8d8cc7cc4df2ec8136",
32
- "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.1.0"
31
+ "commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/bfe531aa306c9c3142fa1d885a8fe17b607e2307",
32
+ "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.1.1"
33
33
  };