@f5xc-salesdemos/xcsh 18.91.2 → 18.91.3

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.91.2",
4
+ "version": "18.91.3",
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",
@@ -50,12 +50,12 @@
50
50
  "dependencies": {
51
51
  "@agentclientprotocol/sdk": "0.16.1",
52
52
  "@mozilla/readability": "^0.6",
53
- "@f5xc-salesdemos/xcsh-stats": "18.91.2",
54
- "@f5xc-salesdemos/pi-agent-core": "18.91.2",
55
- "@f5xc-salesdemos/pi-ai": "18.91.2",
56
- "@f5xc-salesdemos/pi-natives": "18.91.2",
57
- "@f5xc-salesdemos/pi-tui": "18.91.2",
58
- "@f5xc-salesdemos/pi-utils": "18.91.2",
53
+ "@f5xc-salesdemos/xcsh-stats": "18.91.3",
54
+ "@f5xc-salesdemos/pi-agent-core": "18.91.3",
55
+ "@f5xc-salesdemos/pi-ai": "18.91.3",
56
+ "@f5xc-salesdemos/pi-natives": "18.91.3",
57
+ "@f5xc-salesdemos/pi-tui": "18.91.3",
58
+ "@f5xc-salesdemos/pi-utils": "18.91.3",
59
59
  "@sinclair/typebox": "^0.34",
60
60
  "@xterm/headless": "^6.0",
61
61
  "ajv": "^8.18",
@@ -208,11 +208,13 @@ async function loadImpl<T>(
208
208
  * Filter providers based on options and disabled state.
209
209
  */
210
210
  function filterProviders<T>(capability: Capability<T>, options: LoadOptions): Provider<T>[] {
211
- let providers = (capability.providers as Provider<T>[]).filter(p => !disabledProviders.has(p.id));
211
+ let providers = capability.providers as Provider<T>[];
212
212
 
213
213
  if (options.providers) {
214
214
  const allowed = new Set(options.providers);
215
215
  providers = providers.filter(p => allowed.has(p.id));
216
+ } else {
217
+ providers = providers.filter(p => !disabledProviders.has(p.id));
216
218
  }
217
219
  if (options.excludeProviders) {
218
220
  const excluded = new Set(options.excludeProviders);
@@ -224,7 +224,25 @@ export const SETTINGS_SCHEMA = {
224
224
 
225
225
  enabledModels: { type: "array", default: EMPTY_STRING_ARRAY },
226
226
 
227
- disabledProviders: { type: "array", default: EMPTY_STRING_ARRAY },
227
+ disabledProviders: {
228
+ type: "array",
229
+ default: [
230
+ "claude",
231
+ "claude-plugins",
232
+ "codex",
233
+ "agents",
234
+ "agents-md",
235
+ "gemini",
236
+ "opencode",
237
+ "cursor",
238
+ "windsurf",
239
+ "cline",
240
+ "github",
241
+ "vscode",
242
+ "mcp-json",
243
+ "ssh-json",
244
+ ] as string[],
245
+ },
228
246
 
229
247
  disabledExtensions: { type: "array", default: EMPTY_STRING_ARRAY },
230
248
 
@@ -17,17 +17,17 @@ export interface BuildInfo {
17
17
  }
18
18
 
19
19
  export const BUILD_INFO: BuildInfo = {
20
- "version": "18.91.2",
21
- "commit": "20cf55f12270d2119a0d547fb1e0218ee2cb57fe",
22
- "shortCommit": "20cf55f",
20
+ "version": "18.91.3",
21
+ "commit": "65e230edb585a51d271e995d1b62b226f4602e9a",
22
+ "shortCommit": "65e230e",
23
23
  "branch": "main",
24
- "tag": "v18.91.2",
25
- "commitDate": "2026-06-01T22:53:18Z",
26
- "buildDate": "2026-06-01T23:18:04.618Z",
24
+ "tag": "v18.91.3",
25
+ "commitDate": "2026-06-02T05:06:57Z",
26
+ "buildDate": "2026-06-02T05:35:19.452Z",
27
27
  "dirty": true,
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/20cf55f12270d2119a0d547fb1e0218ee2cb57fe",
32
- "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.91.2"
31
+ "commitUrl": "https://github.com/f5xc-salesdemos/xcsh/commit/65e230edb585a51d271e995d1b62b226f4602e9a",
32
+ "releaseUrl": "https://github.com/f5xc-salesdemos/xcsh/releases/tag/v18.91.3"
33
33
  };