-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
1159 lines (1159 loc) · 43.8 KB
/
package.json
File metadata and controls
1159 lines (1159 loc) · 43.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "VSmux",
"displayName": "VSmux - T3code & Agent CLIs Manager",
"version": "4.6.0",
"private": true,
"description": "VSmux - T3code & Agent CLIs Manager",
"categories": [
"Other"
],
"license": "MIT",
"author": "maddada",
"repository": {
"type": "git",
"url": "https://github.com/maddada/VSmux.git"
},
"publisher": "maddada",
"files": [
"media/**",
"chat-history/media/**",
"chat-history/dist/**/*.css",
"chat-history/dist/**/*.js",
"out/extension.js",
"out/chat-history/**/*.js",
"out/debug-panel/**/*.css",
"out/debug-panel/**/*.html",
"out/debug-panel/**/*.js",
"out/extension/**/*.js",
"out/extension/**/*.json",
"out/extension/**/*.mjs",
"out/extension/**/*.node",
"out/shared/**/*.js",
"out/sidebar/**/*.css",
"out/sidebar/**/*.html",
"out/sidebar/**/*.js",
"out/dpcode-server/**",
"out/t3code-embed/**",
"out/t3code-server/**",
"out/workspace/**/*.css",
"out/workspace/**/*.html",
"out/workspace/**/*.ico",
"out/workspace/**/*.js",
"out/workspace/**/*.png",
"out/workspace/**/*.ttf",
"out/workspace/**/*.woff2"
],
"main": "./out/extension/extension.js",
"scripts": {
"build:extension": "pnpm exec concurrently --kill-others-on-fail --prefix none \"pnpm run t3:embed:build\" \"pnpm run sidebar:build\" \"pnpm run debug-panel:build\" \"pnpm run workspace:build\" \"pnpm run chat-history:webview:build\" && tsc -p ./tsconfig.extension.json && node ./scripts/vendor-runtime-deps.mjs",
"build:extension:rollback": "pnpm exec concurrently --kill-others-on-fail --prefix none \"pnpm run t3:embed:build:rollback\" \"pnpm run sidebar:build\" \"pnpm run debug-panel:build\" \"pnpm run workspace:build\" \"pnpm run chat-history:webview:build\" && tsc -p ./tsconfig.extension.json && node ./scripts/vendor-runtime-deps.mjs",
"build:extension:original": "pnpm run t3:embed:build && pnpm run sidebar:build && pnpm run debug-panel:build && pnpm run workspace:build && pnpm run chat-history:webview:build && tsc -p ./tsconfig.extension.json && node ./scripts/vendor-runtime-deps.mjs",
"build:extension:minimal": "pnpm run sidebar:build && pnpm run workspace:build",
"vscode:prepublish": "node ./scripts/vscode-prepublish.mjs",
"sidebar:build": "node ./scripts/vp.mjs build --config vite.sidebar.config.ts",
"debug-panel:build": "node ./scripts/vp.mjs build --config vite.debug-panel.config.ts",
"workspace:build": "node ./scripts/vp.mjs build --config vite.workspace.config.ts",
"chat-history:webview:build": "pnpm exec tailwindcss -i ./chat-history/src/webview/index.css -o ./chat-history/dist/webview.css --minify && bun run ./chat-history/esbuild.webview.ts",
"storybook": "node ./scripts/vp.mjs exec storybook dev -p 6006 --no-open",
"storybook:live": "pnpm exec tsc -p ./tsconfig.extension.json && node ./scripts/storybook-live.mjs",
"storybook:build": "node ./scripts/vp.mjs exec storybook build",
"storybook:test": "node ./scripts/storybook-test.mjs",
"workspace:reconnect:harness": "node ./scripts/workspace-reconnect-harness.mjs",
"compile": "pnpm run build:extension",
"watch": "tsc -w -p ./tsconfig.extension.json",
"typecheck:all": "sh -c 'pnpm exec tsc -p ./tsconfig.extension.json --noEmit --pretty false; s1=$?; pnpm exec tsc -p ./chat-history/tsconfig.json --noEmit --pretty false; s2=$?; pnpm exec tsc -p ./tsconfig.frontend.json --noEmit --pretty false; s3=$?; if [ \"$s1\" -ne 0 ] || [ \"$s2\" -ne 0 ] || [ \"$s3\" -ne 0 ]; then exit 1; fi'",
"t3:embed:build": "node ./scripts/build-t3-embed.mjs",
"t3:embed:build:rollback": "node ./scripts/build-t3-embed.rollback.mjs",
"lint": "node ./scripts/vp.mjs lint",
"fmt": "node ./scripts/vp.mjs fmt",
"check": "node ./scripts/vp.mjs check",
"prepare": "node ./scripts/vp.mjs config",
"vsix:package": "node ./scripts/vsix.mjs package",
"vsix:package:profile": "node ./scripts/vsix.mjs package --profile-build",
"install": "node ./scripts/vsix.mjs install",
"install:rollback": "node ./scripts/vsix.mjs install --build-script build:extension:rollback",
"install:minimal": "node ./scripts/vsix.mjs install --build-script build:extension:minimal",
"install:original": "node ./scripts/vsix.mjs install --build-script build:extension:original",
"install:profile": "node ./scripts/vsix.mjs install --profile-build",
"vsix:package:rollback": "node ./scripts/vsix.mjs package --build-script build:extension:rollback",
"vsix:publish": "node ./scripts/publish-extension.mjs"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@dnd-kit/abstract": "0.3.2",
"@dnd-kit/dom": "0.3.2",
"@dnd-kit/helpers": "0.3.2",
"@dnd-kit/react": "0.3.2",
"@fontsource-variable/inter": "^5.2.8",
"@tabler/icons-react": "^3.40.0",
"@xterm/addon-attach": "0.13.0-beta.197",
"@xterm/addon-fit": "0.12.0-beta.197",
"@xterm/addon-search": "0.17.0-beta.197",
"@xterm/addon-serialize": "0.15.0-beta.197",
"@xterm/addon-unicode11": "0.10.0-beta.197",
"@xterm/addon-web-fonts": "0.2.0-beta.111",
"@xterm/addon-webgl": "0.20.0-beta.196",
"@xterm/headless": "6.1.0-beta.197",
"@xterm/xterm": "6.1.0-beta.197",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"ghostty-web": "^0.4.0",
"lucide-react": "^0.561.0",
"qrcode": "^1.5.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"remark-gfm": "^4.0.1",
"restty": "0.1.35",
"shadcn": "^3.6.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"ws": "^8.20.0",
"zod": "^4.1.13",
"zustand": "^5.0.12"
},
"devDependencies": {
"@storybook/react-vite": "^10.3.0",
"@storybook/test-runner": "^0.24.3",
"@tailwindcss/cli": "^4.1.17",
"@types/node": "^25.5.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/vscode": "1.100.0",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.1",
"@vscode/vsce": "^3.7.1",
"concurrently": "^9.2.1",
"esbuild": "^0.24.0",
"node-pty": "1.2.0-beta.12",
"storybook": "^10.3.0",
"tailwindcss": "^4.1.17",
"typescript": "~5.9.3",
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vite-plus": "latest"
},
"contributes": {
"commands": [
{
"command": "VSmux.openWorkspace",
"title": "Open Workspace",
"category": "VSmux"
},
{
"command": "VSmux.openSettings",
"title": "Open Settings",
"category": "VSmux"
},
{
"command": "VSmux.saveAndClosePromptTempModal",
"title": "Save And Close Prompt Temp Modal",
"category": "VSmux"
},
{
"command": "VSmux.createSession",
"title": "New Session",
"category": "VSmux"
},
{
"command": "VSmux.revealSession",
"title": "Reveal Session",
"category": "VSmux"
},
{
"command": "VSmux.restartSession",
"title": "Restart Session",
"category": "VSmux"
},
{
"command": "VSmux.renameActiveSession",
"title": "Rename Active Session",
"category": "VSmux"
},
{
"command": "VSmux.focusGroup1",
"title": "Focus Group 1",
"category": "VSmux"
},
{
"command": "VSmux.focusGroup2",
"title": "Focus Group 2",
"category": "VSmux"
},
{
"command": "VSmux.focusGroup3",
"title": "Focus Group 3",
"category": "VSmux"
},
{
"command": "VSmux.focusGroup4",
"title": "Focus Group 4",
"category": "VSmux"
},
{
"command": "VSmux.focusUp",
"title": "Focus Up",
"category": "VSmux"
},
{
"command": "VSmux.focusRight",
"title": "Focus Right",
"category": "VSmux"
},
{
"command": "VSmux.focusDown",
"title": "Focus Down",
"category": "VSmux"
},
{
"command": "VSmux.focusLeft",
"title": "Focus Left",
"category": "VSmux"
},
{
"command": "VSmux.focusPreviousSidebarSession",
"title": "Focus Previous Sidebar Session",
"category": "VSmux"
},
{
"command": "VSmux.focusNextSidebarSession",
"title": "Focus Next Sidebar Session",
"category": "VSmux"
},
{
"command": "VSmux.focusSessionSlot",
"title": "Focus Session Slot",
"category": "VSmux"
},
{
"command": "VSmux.showOne",
"title": "Show 1 Terminal",
"category": "VSmux"
},
{
"command": "VSmux.showTwo",
"title": "Show 2 Terminals",
"category": "VSmux"
},
{
"command": "VSmux.showThree",
"title": "Show 3 Terminals",
"category": "VSmux"
},
{
"command": "VSmux.showFour",
"title": "Show 4 Terminals",
"category": "VSmux"
},
{
"command": "VSmux.showSix",
"title": "Show 6 Terminals",
"category": "VSmux"
},
{
"command": "VSmux.showNine",
"title": "Show 9 Terminals",
"category": "VSmux"
},
{
"command": "VSmux.toggleFullscreenSession",
"title": "Toggle Fullscreen Session",
"category": "VSmux"
},
{
"command": "VSmux.resetWorkspace",
"title": "Reset Workspace",
"category": "VSmux"
},
{
"command": "VSmux.moveToSecondarySidebar",
"title": "Move to Secondary Sidebar",
"category": "VSmux"
},
{
"command": "VSmuxSearch.openViewer",
"title": "VSmux Search: Open Conversation Viewer"
},
{
"command": "VSmuxSearch.refresh",
"title": "Refresh",
"icon": "$(refresh)"
},
{
"command": "VSmuxSearch.openConversation",
"title": "Open Conversation"
},
{
"command": "VSmuxSearch.toggleScope",
"title": "VSmux Search: Toggle Scope (Current/All Projects)",
"icon": "$(filter)"
},
{
"command": "VSmuxSearch.toggleTimeFilter",
"title": "VSmux Search: Toggle Time Filter (Recent/All)",
"icon": "$(history)"
},
{
"command": "VSmuxSearch.suspend",
"title": "VSmux Search: Suspend (Release Memory)",
"icon": "$(debug-pause)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "VSmuxSessions",
"title": "VSmux",
"icon": "media/icon.svg"
}
],
"secondarySidebar": [
{
"id": "VSmuxSessionsSecondary",
"title": "VSmux",
"icon": "media/icon.svg"
}
]
},
"views": {
"VSmuxSessions": [
{
"type": "webview",
"id": "VSmux.sessions",
"name": "Sessions"
},
{
"type": "webview",
"id": "VSmuxSearch.conversations",
"name": "Sessions Search",
"icon": "chat-history/media/icon.svg",
"contextualTitle": "Sessions Search"
}
]
},
"viewsWelcome": [
{
"view": "VSmuxSearch.conversations",
"contents": "No conversations found for this project.\n\nStart a Claude Code or Codex conversation in this workspace to see it here.\n\n[Show All Projects](command:VSmuxSearch.toggleScope)\n[Refresh](command:VSmuxSearch.refresh)"
}
],
"menus": {
"view/title": [
{
"command": "VSmuxSearch.toggleTimeFilter",
"when": "view == VSmuxSearch.conversations",
"group": "navigation@1"
},
{
"command": "VSmuxSearch.toggleScope",
"when": "view == VSmuxSearch.conversations",
"group": "navigation@2"
},
{
"command": "VSmuxSearch.refresh",
"when": "view == VSmuxSearch.conversations",
"group": "navigation@3"
}
]
},
"configuration": {
"title": "VSmux",
"properties": {
"VSmux.backgroundSessionTimeoutMinutes": {
"title": "Background Session Timeout Minutes",
"type": "number",
"minimum": 0,
"default": 0,
"description": "How long detached background sessions stay alive after the last VSmux window disconnects. Set to 0 to disable this timeout. For auto-sleep, set this to a value like 20 minutes to opt in.",
"markdownDescription": "How long detached background sessions stay alive after the last VSmux window disconnects. Set to `0` to keep this disabled by default.\n\nNote: this same timeout also drives automatic sleeping for idle sessions when you opt in by setting a value such as `20` minutes. Auto-sleep applies to idle Claude, Codex, and T3 sessions."
},
"VSmux.autoOpenSidebarViewsOnStartup": {
"title": "Auto Open Sidebar Views On Startup",
"type": "boolean",
"default": false,
"description": "When enabled, VS Code startup automatically reveals the VSmux sidebar and reopens the VSmux Sessions view if it is not already open."
},
"VSmux.t3EmbedProvider": {
"title": "T3 Embed Provider",
"type": "string",
"default": "t3code",
"enum": [
"dpcode",
"t3code"
],
"enumItemLabels": [
"DP Code",
"T3 Code"
],
"description": "Which embedded T3-compatible app VSmux launches when you click the T3 Code sidebar agent."
},
"VSmux.t3codeRepoRoot": {
"title": "T3 Code Repo Root",
"type": "string",
"default": "",
"description": "Absolute path to the t3code-embed checkout. Use this when the managed T3 Code runtime source lives outside the default sibling path."
},
"VSmux.sidebarTheme": {
"title": "Sidebar Theme",
"type": "string",
"default": "auto",
"enum": [
"auto",
"plain",
"dark-green",
"dark-blue",
"dark-red",
"dark-pink",
"dark-orange",
"light-blue",
"light-green",
"light-pink",
"light-orange"
],
"enumItemLabels": [
"Auto",
"Plain",
"Dark Green",
"Dark Blue",
"Dark Red",
"Dark Pink",
"Dark Orange",
"Light Blue",
"Light Green",
"Light Pink",
"Light Orange"
],
"enumDescriptions": [
"Follows the active VS Code theme: Dark Blue in dark themes and Light Blue in light themes.",
"A neutral grayscale theme that follows the active VS Code light or dark mode.",
"A very dark green-tinted palette with a muted emerald accent.",
"A very dark blue-tinted palette with a muted cobalt accent.",
"A very dark red-tinted palette with a muted crimson accent.",
"A very dark pink-tinted palette with a muted rose accent.",
"A very dark orange-tinted palette with a muted amber accent.",
"A light blue-tinted palette with a crisp cobalt accent.",
"A light green-tinted palette with a soft emerald accent.",
"A light pink-tinted palette with a rose accent.",
"A light orange-tinted palette with an amber accent."
],
"description": "Theme preset used by the VSmux sidebar app. Auto follows the active VS Code light or dark theme."
},
"VSmux.agentManagerZoom": {
"title": "Agent Manager Zoom",
"type": "number",
"minimum": 50,
"maximum": 200,
"default": 100,
"description": "Zoom percentage used by the VSmux agent manager sidebar UI. 100 is default size, 95 or 90 zoom out, and values above 100 zoom in."
},
"VSmux.terminalFontFamily": {
"title": "Terminal Font Family",
"type": "string",
"default": "JetBrains Mono",
"enum": [
"Monospace",
"UI Monospace",
"Meslo",
"Cross Platform Mono",
"Consolas (Windows Default)",
"Menlo",
"Monaco (macOS Default)",
"Droid Sans Mono (Linux Default)",
"Liberation Mono",
"DejaVu Sans Mono",
"Courier New",
"Cascadia Mono",
"Cascadia Code",
"JetBrains Mono",
"Fira Code",
"Source Code Pro",
"IBM Plex Mono",
"Roboto Mono",
"Noto Sans Mono",
"Ubuntu Mono"
],
"enumItemLabels": [
"Monospace (W,M,L)",
"UI Monospace (W,M,L)",
"Meslo (W,M,L)",
"Cross Platform Mono (W,M,L)",
"Consolas (Windows Default)",
"Menlo (M)",
"Monaco (macOS Default)",
"Droid Sans Mono (Linux Default)",
"Liberation Mono (L)",
"DejaVu Sans Mono (L)",
"Courier New (W,M)",
"Cascadia Mono (W)",
"Cascadia Code (W)",
"JetBrains Mono (W,M,L)",
"Fira Code (install it first)",
"Source Code Pro (install it first)",
"IBM Plex Mono (install it first)",
"Roboto Mono (install it first)",
"Noto Sans Mono (install it first)",
"Ubuntu Mono (install it first)"
],
"enumDescriptions": [
"Generic browser monospace font family. Safe on Windows, macOS, and Linux.",
"Generic UI monospace family with a monospace fallback. Safe on Windows, macOS, and Linux.",
"Bundled with VSmux, so the intended font works on Windows, macOS, and Linux.",
"Fallback stack that picks a common installed mono font for each OS, then falls back to monospace.",
"Uses the Windows default stack: Consolas, Courier New, then monospace.",
"Uses Menlo when it is available by default on macOS, otherwise falls back to monospace.",
"Uses the macOS default stack: Monaco, Courier New, then monospace.",
"Uses the Linux default stack: Droid Sans Mono, a literal \"monospace\" font name if present, then generic monospace.",
"Uses Liberation Mono when it is available by default on Linux, otherwise falls back to monospace.",
"Uses DejaVu Sans Mono when it is available by default on Linux, otherwise falls back to monospace.",
"Uses Courier New when it is available by default on Windows or macOS, otherwise falls back to monospace.",
"Uses Cascadia Mono when it is available by default on Windows, otherwise falls back to monospace.",
"Uses Cascadia Code when it is available by default on Windows, otherwise falls back to monospace.",
"Bundled with VSmux, so JetBrains Mono works on Windows, macOS, and Linux and still falls back to bundled Nerd Font glyphs.",
"Not bundled with VSmux and not usually installed by default. Install it first for the intended look.",
"Not bundled with VSmux and not usually installed by default. Install it first for the intended look.",
"Not bundled with VSmux and not usually installed by default. Install it first for the intended look.",
"Not bundled with VSmux and not usually installed by default. Install it first for the intended look.",
"Not bundled with VSmux and not usually installed by default. Install it first for the intended look.",
"Not bundled with VSmux and not usually installed by default. Install it first for the intended look."
],
"description": "Choose the font preset used by VSmux workspace terminals."
},
"VSmux.terminalFontSize": {
"title": "Terminal Font Size",
"type": "number",
"minimum": 8,
"maximum": 32,
"default": 13,
"scope": "application",
"description": "Font size used by VSmux workspace terminals."
},
"VSmux.t3ZoomPercent": {
"title": "T3 Zoom Percent",
"type": "number",
"minimum": 50,
"maximum": 200,
"default": 100,
"scope": "application",
"description": "Zoom percentage used by embedded VSmux T3 sessions in the current VS Code workspace. 100 is default size."
},
"VSmux.terminalFontWeight": {
"title": "Terminal Font Weight",
"type": "number",
"minimum": 100,
"maximum": 900,
"default": 300,
"description": "Standard text weight used by xterm.js workspace terminals. Lower values look lighter."
},
"VSmux.terminalLineHeight": {
"title": "Terminal Line Height",
"type": "number",
"minimum": 0.8,
"maximum": 2,
"default": 1.1,
"description": "Line height multiplier used by VSmux workspace terminals."
},
"VSmux.terminalLetterSpacing": {
"title": "Terminal Letter Spacing",
"type": "number",
"minimum": -2,
"maximum": 8,
"default": 1.1,
"description": "Letter spacing used by VSmux workspace terminals."
},
"VSmux.terminalCursorStyle": {
"title": "Terminal Cursor Style",
"type": "string",
"default": "bar",
"enum": [
"bar",
"block",
"underline"
],
"enumItemLabels": [
"Line",
"Block",
"Underline"
],
"description": "Cursor style used by VSmux workspace terminals."
},
"VSmux.terminalEngine": {
"title": "Terminal Engine",
"type": "string",
"default": "xterm",
"enum": [
"ghostty",
"xterm"
],
"enumItemLabels": [
"Ghostty (Beta)",
"xterm.js"
],
"enumDescriptions": [
"Nearly stable, but Codex terminal reloads can still hit bugs. If that happens, use the refresh button.",
"Stable and the default. Recommended for everyday use."
],
"description": "Choose the default engine for new VSmux terminal sessions. xterm.js is the stable default; Ghostty is still beta and may occasionally need a refresh after reloads."
},
"VSmux.xtermHeadlessScrollback": {
"title": "xterm.js Reconnect Scrollback",
"type": "number",
"minimum": 100,
"maximum": 100000,
"default": 50000,
"description": "Controls how many lines the daemon-side xterm.js headless terminal keeps for reconnects. The frontend uses a derived larger buffer automatically. Higher values preserve more history but can make reconnecting take some time."
},
"VSmux.terminalScrollToBottomWhenTyping": {
"title": "Scroll To Bottom When Typing",
"type": "boolean",
"default": true,
"description": "When enabled, typing more than 3 characters in very quick succession automatically scrolls the active VSmux terminal to the bottom."
},
"VSmux.workspacePaneGap": {
"title": "Workspace Pane Gap",
"type": "number",
"minimum": 0,
"maximum": 48,
"default": 10,
"description": "Uniform gap in pixels used both between visible panes and around the outer edge of the VSmux workspace."
},
"VSmux.workspaceActivePaneBorderColor": {
"title": "Workspace Active Pane Border Color",
"type": "string",
"default": "rgba(90, 134, 255, 0.95)",
"description": "CSS color used for the border around the currently active pane in the VSmux workspace."
},
"VSmux.debuggingMode": {
"title": "Debugging Mode",
"type": "boolean",
"default": false,
"description": "Show debugging UI such as the active terminal backend indicator in the status bar."
},
"VSmux.openPromptTempFilesInModalEditor": {
"title": "Open Prompt Temp Files In Modal Editor",
"type": "boolean",
"default": true,
"description": "Open supported Codex and Claude temporary prompt markdown files in a VS Code modal editor and reveal VSmux behind the popup. Disable this to keep the default editor behavior."
},
"VSmux.showCloseButtonOnSessionCards": {
"title": "Show Close Button On Session Cards",
"type": "boolean",
"default": false,
"description": "Reveal a close button when you hover a session card. You can always cmd + click or middle click on a card to close it."
},
"VSmux.showHotkeysOnSessionCards": {
"title": "Show Hotkeys On Session Cards",
"type": "boolean",
"default": false,
"description": "Show hotkey labels on session cards all the time instead of only revealing them when you hover a card."
},
"VSmux.showLastInteractionTimeOnSessionCards": {
"title": "Show Last Active Time By Default",
"type": "boolean",
"default": false,
"description": "When enabled, session cards show a small relative timestamp by default and reveal the agent icon on hover. When disabled, the agent icon shows by default and the timestamp appears on hover."
},
"VSmux.showSidebarActions": {
"title": "Show Sidebar Actions",
"type": "boolean",
"default": true,
"description": "Show the Actions section in the VSmux sidebar."
},
"VSmux.showSidebarAgents": {
"title": "Show Sidebar Agents",
"type": "boolean",
"default": true,
"description": "Show the Agents section in the VSmux sidebar."
},
"VSmux.showSidebarBrowsers": {
"title": "Show Sidebar Browsers",
"type": "boolean",
"default": true,
"description": "Show the Browsers section in the VSmux sidebar when browser tabs are detected."
},
"VSmux.defaultBrowserLaunchUrl": {
"title": "Default Browser Launch Url",
"type": "string",
"scope": "application",
"default": "https://www.google.com",
"description": "URL opened by the Browsers group + button when this workspace has no browser actions configured. If browser actions exist, the first browser action URL is used instead."
},
"VSmux.showSidebarGitButton": {
"title": "Show Sidebar Git Button",
"type": "boolean",
"default": true,
"description": "Show the Git button inside the Actions section in the VSmux sidebar."
},
"VSmux.hideSidebarProjectHeader": {
"title": "Hide Sidebar Project Header",
"type": "boolean",
"default": false,
"description": "Hide the project header card at the top of the Actions section in the VSmux sidebar."
},
"VSmux.shareSidebarCommandsAcrossWorktrees": {
"title": "Share Sidebar Commands Across Worktrees",
"type": "boolean",
"scope": "application",
"default": true,
"description": "Share non-global sidebar actions between Git worktrees that belong to the same repository. Global actions still appear in every project."
},
"VSmux.sendRenameCommandOnSidebarRename": {
"title": "Send Rename Command On Sidebar Rename",
"type": "boolean",
"default": true,
"description": "When renaming a session from the sidebar, also stage `/rename <new name>` in that terminal and focus it without pressing Enter."
},
"VSmux.createSessionOnSidebarDoubleClick": {
"title": "Create Session On Sidebar Double Click",
"type": "boolean",
"default": false,
"description": "When enabled, double-clicking empty space in the VSmux sidebar creates a new terminal session."
},
"VSmux.renameSessionOnDoubleClick": {
"title": "Rename Session On Double Click",
"type": "boolean",
"default": false,
"description": "When enabled, double-clicking a terminal session card in the VSmux sidebar opens rename."
},
"VSmux.completionSound": {
"title": "Completion Sound",
"type": "string",
"default": "arcade",
"enum": [
"ping",
"pingdouble",
"glass",
"glimmer",
"shamisen",
"shamisenreverb",
"arcade",
"arcadeboost",
"codecompleteafrican",
"africanspark",
"codecompleteafrobeat",
"afrobeatbounce",
"codecompleteedm",
"edmspark",
"comebacktothecode"
],
"enumItemLabels": [
"Ping",
"Ping Double",
"Glass",
"Glimmer",
"Shamisen",
"Shamisen Reverb",
"Arcade",
"Arcade Boost",
"African Code Complete",
"African Spark",
"Afrobeat Code Complete",
"Afrobeat Bounce",
"EDM Code Complete",
"EDM Spark",
"Come Back To The Code"
],
"description": "Sound played when an agent finishes and the per-project bell is enabled in the VSmux sidebar."
},
"VSmux.actionCompletionSound": {
"title": "Action Completion Sound",
"type": "string",
"default": "ping",
"enum": [
"ping",
"pingdouble",
"glass",
"glimmer",
"shamisen",
"shamisenreverb",
"arcade",
"arcadeboost",
"codecompleteafrican",
"africanspark",
"codecompleteafrobeat",
"afrobeatbounce",
"codecompleteedm",
"edmspark",
"comebacktothecode"
],
"enumItemLabels": [
"Ping",
"Ping Double",
"Glass",
"Glimmer",
"Shamisen",
"Shamisen Reverb",
"Arcade",
"Arcade Boost",
"African Code Complete",
"African Spark",
"Afrobeat Code Complete",
"Afrobeat Bounce",
"EDM Code Complete",
"EDM Spark",
"Come Back To The Code"
],
"description": "Sound played when a sidebar terminal action finishes, closes itself, and has sound playback enabled in its action configuration."
},
"VSmux.agents": {
"title": "Agents",
"type": "array",
"scope": "application",
"default": [],
"items": {
"type": "object",
"properties": {
"agentId": {
"type": "string"
},
"name": {
"type": "string"
},
"command": {
"type": "string"
},
"icon": {
"type": "string",
"enum": [
"t3",
"codex",
"claude",
"opencode",
"gemini"
]
},
"hidden": {
"type": "boolean"
},
"isDefault": {
"type": "boolean"
}
}
},
"description": "User-level agent definitions shown in the VSmux sidebar. Built-in agents can be customized or hidden, and extra custom variants can reuse the same agent type icons."
},
"VSmux.defaultAgentCommands": {
"title": "Default Agent Commands",
"type": "object",
"scope": "application",
"default": {
"t3": null,
"codex": null,
"copilot": null,
"claude": null,
"opencode": null,
"gemini": null
},
"properties": {
"t3": {
"type": [
"string",
"null"
]
},
"codex": {
"type": [
"string",
"null"
]
},
"copilot": {
"type": [
"string",
"null"
]
},
"claude": {
"type": [
"string",
"null"
]
},
"opencode": {
"type": [
"string",
"null"
]
},
"gemini": {
"type": [
"string",
"null"
]
}
},
"description": "Override the default shell command used for each built-in VSmux agent. Leave a value null to keep the built-in default command."
},
"VSmux.gitTextGenerationProvider": {
"title": "Git Text Generation Provider",
"type": "string",
"scope": "application",
"default": "codex",
"enum": [
"codex",
"claude",
"custom"
],
"enumItemLabels": [
"Codex",
"Claude",
"Custom"
],
"description": "Provider used to generate Git commit messages and PR text. Codex uses codex -m gpt-5.4-mini with low reasoning effort and Claude uses claude --model haiku --effort low."
},
"VSmux.gitTextGenerationCustomCommand": {
"title": "Git Text Generation Custom Command",
"type": "string",
"scope": "application",
"default": "",
"description": "Shell command template used when VSmux.gitTextGenerationProvider is custom. Use {prompt} for the full prompt and {outputFile} for the absolute output file path. Placeholders are shell-quoted automatically."
},
"VSmux.gitTextGenerationAgentId": {
"title": "Git Text Generation Agent Id",
"type": "string",
"scope": "application",
"default": "codex",
"description": "Deprecated. Use VSmux.gitTextGenerationProvider and VSmux.gitTextGenerationCustomCommand instead.",
"deprecationMessage": "Use VSmux.gitTextGenerationProvider and VSmux.gitTextGenerationCustomCommand instead."
},
"VSmux.findPreviousSessionAgentId": {
"title": "Find Previous Session Agent Id",
"type": "string",
"scope": "application",
"default": "codex",
"description": "Agent button ID used by the Previous Sessions modal when launching Find a session. Defaults to codex."
},
"VSmux.findPreviousSessionPromptTemplate": {
"title": "Find Previous Session Prompt Template",
"type": "string",
"scope": "application",
"default": "Help me find a previous AI agent session where I talked about: {query}\n\nSearch these local session locations:\n- <user folder>/.claude/projects\n- <user folder>/.codex/sessions\n- <user folder>/.claude-profiles/*/projects\n- <user folder>/.codex-profiles/*/sessions\n\nRules:\n- First detect the current repo root, current branch, and all local git worktrees.\n- Only keep sessions from the current repo, one of its worktrees, or a clearly related project path.\n- Search metadata first, then transcript bodies.\n- Prefer exact saved session/thread names over transcript keyword matches.\n- Prefer more recent sessions when relevance is similar.\n\nCodex:\n- Search these first:\n - <user folder>/.codex/session_index.jsonl\n - <user folder>/.codex/history.jsonl\n - <user folder>/.codex-profiles/*/session_index.jsonl\n - <user folder>/.codex-profiles/*/history.jsonl\n- Then inspect matching rollout files under:\n - <user folder>/.codex/sessions/**/rollout-*.jsonl\n - <user folder>/.codex-profiles/*/sessions/**/rollout-*.jsonl\n- Name priority:\n 1. thread_name_updated.thread_name in rollout files\n 2. thread_name in session_index.jsonl\n- Also use:\n - session_meta.payload.id\n - session_meta.payload.cwd\n\nClaude:\n- Search these first:\n - <user folder>/.claude/projects/*/sessions-index.json\n - <user folder>/.claude-profiles/*/projects/*/sessions-index.json\n- Then inspect matching session files:\n - <user folder>/.claude/projects/*/*.jsonl\n - <user folder>/.claude-profiles/*/projects/*/*.jsonl\n- Name priority:\n 1. custom-title.customTitle\n 2. agent-name.agentName\n 3. entries[].summary from sessions-index.json\n 4. slug\n- Also use:\n - sessionId\n - cwd\n - gitBranch\n - projectPath\n\nReturn:\n- session ID\n- latest saved session/thread name\n- exact file path(s) used\n- related project folder if not current repo\n- short reason it matches\n\nIf multiple strong matches exist, return the top few, most recent first.",
"description": "Prompt staged inside the selected agent when using Find a session from Previous Sessions. Use {query} or {topic} for the text entered in the VS Code input box."
},
"VSmux.agentOrder": {
"title": "Agent Order",
"type": "array",
"scope": "application",
"default": [],
"items": {
"type": "string"
},
"description": "Internal ordering metadata for agent buttons in the VSmux sidebar."
}
}
},
"keybindings": [
{
"command": "VSmux.createSession",
"key": "ctrl+alt+n",
"mac": "cmd+alt+n",
"when": "!inputFocus || terminalFocus || vsmux.workspacePanelFocus"
},
{
"command": "VSmux.openSettings",
"key": "ctrl+alt+,",
"mac": "cmd+alt+,",
"when": "!inputFocus || terminalFocus || vsmux.workspacePanelFocus"
},
{
"command": "VSmux.saveAndClosePromptTempModal",
"key": "ctrl+g",
"mac": "ctrl+g",
"when": "editorPartModal && editorTextFocus && resourceScheme == file && resourceFilename =~ /^(claude-prompt-.*|\\\\.tmp.*)\\\\.md$/"
},
{
"command": "VSmux.moveToSecondarySidebar",
"key": "ctrl+alt+b",
"mac": "cmd+alt+b",
"when": "!inputFocus || terminalFocus || vsmux.workspacePanelFocus"
},
{
"command": "VSmux.focusGroup1",
"key": "ctrl+alt+shift+1",
"mac": "cmd+alt+shift+1",
"when": "!inputFocus || terminalFocus || vsmux.workspacePanelFocus"
},
{
"command": "VSmux.focusGroup2",
"key": "ctrl+alt+shift+2",
"mac": "cmd+alt+shift+2",
"when": "!inputFocus || terminalFocus || vsmux.workspacePanelFocus"
},
{
"command": "VSmux.focusGroup3",
"key": "ctrl+alt+shift+3",
"mac": "cmd+alt+shift+3",
"when": "!inputFocus || terminalFocus || vsmux.workspacePanelFocus"
},
{
"command": "VSmux.focusGroup4",
"key": "ctrl+alt+shift+4",
"mac": "cmd+alt+shift+4",
"when": "!inputFocus || terminalFocus || vsmux.workspacePanelFocus"
},
{
"args": 1,
"command": "VSmux.focusSessionSlot",
"key": "ctrl+alt+1",
"mac": "cmd+alt+1",
"when": "!inputFocus || terminalFocus || vsmux.workspacePanelFocus"