@f5xc-salesdemos/xcsh 15.1.3 → 15.2.0
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 +7 -7
- package/src/config/settings-schema.ts +11 -11
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@f5xc-salesdemos/xcsh",
|
|
4
|
-
"version": "15.
|
|
4
|
+
"version": "15.2.0",
|
|
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",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@agentclientprotocol/sdk": "0.16.1",
|
|
48
48
|
"@mozilla/readability": "^0.6",
|
|
49
|
-
"@f5xc-salesdemos/xcsh-stats": "15.
|
|
50
|
-
"@f5xc-salesdemos/pi-agent-core": "15.
|
|
51
|
-
"@f5xc-salesdemos/pi-ai": "15.
|
|
52
|
-
"@f5xc-salesdemos/pi-natives": "15.
|
|
53
|
-
"@f5xc-salesdemos/pi-tui": "15.
|
|
54
|
-
"@f5xc-salesdemos/pi-utils": "15.
|
|
49
|
+
"@f5xc-salesdemos/xcsh-stats": "15.2.0",
|
|
50
|
+
"@f5xc-salesdemos/pi-agent-core": "15.2.0",
|
|
51
|
+
"@f5xc-salesdemos/pi-ai": "15.2.0",
|
|
52
|
+
"@f5xc-salesdemos/pi-natives": "15.2.0",
|
|
53
|
+
"@f5xc-salesdemos/pi-tui": "15.2.0",
|
|
54
|
+
"@f5xc-salesdemos/pi-utils": "15.2.0",
|
|
55
55
|
"@sinclair/typebox": "^0.34",
|
|
56
56
|
"@xterm/headless": "^6.0",
|
|
57
57
|
"ajv": "^8.18",
|
|
@@ -262,7 +262,7 @@ export const SETTINGS_SCHEMA = {
|
|
|
262
262
|
symbolPreset: {
|
|
263
263
|
type: "enum",
|
|
264
264
|
values: ["unicode", "nerd", "ascii"] as const,
|
|
265
|
-
default: "
|
|
265
|
+
default: "nerd",
|
|
266
266
|
ui: { tab: "appearance", label: "Symbol Preset", description: "Icon/symbol style", submenu: true },
|
|
267
267
|
},
|
|
268
268
|
|
|
@@ -292,7 +292,7 @@ export const SETTINGS_SCHEMA = {
|
|
|
292
292
|
"statusLine.separator": {
|
|
293
293
|
type: "enum",
|
|
294
294
|
values: ["powerline", "powerline-thin", "slash", "pipe", "block", "none", "ascii"] as const,
|
|
295
|
-
default: "powerline
|
|
295
|
+
default: "powerline",
|
|
296
296
|
ui: {
|
|
297
297
|
tab: "appearance",
|
|
298
298
|
label: "Status Line Separator",
|
|
@@ -670,7 +670,7 @@ export const SETTINGS_SCHEMA = {
|
|
|
670
670
|
|
|
671
671
|
collapseChangelog: {
|
|
672
672
|
type: "boolean",
|
|
673
|
-
default:
|
|
673
|
+
default: true,
|
|
674
674
|
ui: { tab: "interaction", label: "Collapse Changelog", description: "Show condensed changelog after updates" },
|
|
675
675
|
},
|
|
676
676
|
|
|
@@ -703,7 +703,7 @@ export const SETTINGS_SCHEMA = {
|
|
|
703
703
|
// Speech-to-text
|
|
704
704
|
"stt.enabled": {
|
|
705
705
|
type: "boolean",
|
|
706
|
-
default:
|
|
706
|
+
default: true,
|
|
707
707
|
ui: { tab: "interaction", label: "Speech-to-Text", description: "Enable speech-to-text input via microphone" },
|
|
708
708
|
},
|
|
709
709
|
|
|
@@ -861,7 +861,7 @@ export const SETTINGS_SCHEMA = {
|
|
|
861
861
|
// Memories
|
|
862
862
|
"memories.enabled": {
|
|
863
863
|
type: "boolean",
|
|
864
|
-
default:
|
|
864
|
+
default: true,
|
|
865
865
|
ui: {
|
|
866
866
|
tab: "context",
|
|
867
867
|
label: "Memories",
|
|
@@ -1249,7 +1249,7 @@ export const SETTINGS_SCHEMA = {
|
|
|
1249
1249
|
|
|
1250
1250
|
"renderMermaid.enabled": {
|
|
1251
1251
|
type: "boolean",
|
|
1252
|
-
default:
|
|
1252
|
+
default: true,
|
|
1253
1253
|
ui: {
|
|
1254
1254
|
tab: "tools",
|
|
1255
1255
|
label: "Render Mermaid",
|
|
@@ -1269,7 +1269,7 @@ export const SETTINGS_SCHEMA = {
|
|
|
1269
1269
|
|
|
1270
1270
|
"calc.enabled": {
|
|
1271
1271
|
type: "boolean",
|
|
1272
|
-
default:
|
|
1272
|
+
default: true,
|
|
1273
1273
|
ui: {
|
|
1274
1274
|
tab: "tools",
|
|
1275
1275
|
label: "Calculator",
|
|
@@ -1279,7 +1279,7 @@ export const SETTINGS_SCHEMA = {
|
|
|
1279
1279
|
|
|
1280
1280
|
"inspect_image.enabled": {
|
|
1281
1281
|
type: "boolean",
|
|
1282
|
-
default:
|
|
1282
|
+
default: true,
|
|
1283
1283
|
ui: {
|
|
1284
1284
|
tab: "tools",
|
|
1285
1285
|
label: "Inspect Image",
|
|
@@ -1306,7 +1306,7 @@ export const SETTINGS_SCHEMA = {
|
|
|
1306
1306
|
|
|
1307
1307
|
"github.enabled": {
|
|
1308
1308
|
type: "boolean",
|
|
1309
|
-
default:
|
|
1309
|
+
default: true,
|
|
1310
1310
|
ui: {
|
|
1311
1311
|
tab: "tools",
|
|
1312
1312
|
label: "GitHub CLI",
|
|
@@ -1662,13 +1662,13 @@ export const SETTINGS_SCHEMA = {
|
|
|
1662
1662
|
// Exa
|
|
1663
1663
|
"exa.enabled": {
|
|
1664
1664
|
type: "boolean",
|
|
1665
|
-
default:
|
|
1665
|
+
default: false,
|
|
1666
1666
|
ui: { tab: "providers", label: "Exa", description: "Master toggle for all Exa search tools" },
|
|
1667
1667
|
},
|
|
1668
1668
|
|
|
1669
1669
|
"exa.enableSearch": {
|
|
1670
1670
|
type: "boolean",
|
|
1671
|
-
default:
|
|
1671
|
+
default: false,
|
|
1672
1672
|
ui: { tab: "providers", label: "Exa Search", description: "Basic search, deep search, code search, crawl" },
|
|
1673
1673
|
},
|
|
1674
1674
|
|