-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgenerated.ts
More file actions
1647 lines (1638 loc) · 65.2 KB
/
generated.ts
File metadata and controls
1647 lines (1638 loc) · 65.2 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
/**
* Browser Structure Registry - Auto-generated
*
* Contains 11 daemons and 222 commands and 2 adapters and 28 widgets.
* Generated by scripts/generate-structure.ts - DO NOT EDIT MANUALLY
*/
// Browser daemons Imports
import { ArchiveDaemonBrowser } from './../daemons/archive-daemon/browser/ArchiveDaemonBrowser';
import { ArtifactsDaemonBrowser } from './../daemons/artifacts-daemon/browser/ArtifactsDaemonBrowser';
import { CommandDaemonBrowser } from './../daemons/command-daemon/browser/CommandDaemonBrowser';
import { ConsoleDaemonBrowser } from './../daemons/console-daemon/browser/ConsoleDaemonBrowser';
import { DataDaemonBrowser } from './../daemons/data-daemon/browser/DataDaemonBrowser';
import { EventsDaemonBrowser } from './../daemons/events-daemon/browser/EventsDaemonBrowser';
import { HealthDaemonBrowser } from './../daemons/health-daemon/browser/HealthDaemonBrowser';
import { LoggerDaemonBrowser } from './../daemons/logger-daemon/browser/LoggerDaemonBrowser';
import { SessionDaemonBrowser } from './../daemons/session-daemon/browser/SessionDaemonBrowser';
import { UserDaemonBrowser } from './../daemons/user-daemon/browser/UserDaemonBrowser';
import { WidgetDaemonBrowser } from './../daemons/widget-daemon/browser/WidgetDaemonBrowser';
// Browser commands Imports
import { AdapterAdoptBrowserCommand } from './../commands/adapter/adopt/browser/AdapterAdoptBrowserCommand';
import { AdapterSearchBrowserCommand } from './../commands/adapter/search/browser/AdapterSearchBrowserCommand';
import { AdapterTryBrowserCommand } from './../commands/adapter/try/browser/AdapterTryBrowserCommand';
import { AgentListBrowserCommand } from './../commands/agent/list/browser/AgentListBrowserCommand';
import { AgentStartBrowserCommand } from './../commands/agent/start/browser/AgentStartBrowserCommand';
import { AgentStatusBrowserCommand } from './../commands/agent/status/browser/AgentStatusBrowserCommand';
import { AgentStopBrowserCommand } from './../commands/agent/stop/browser/AgentStopBrowserCommand';
import { AiAgentBrowserCommand } from './../commands/ai/agent/browser/AiAgentBrowserCommand';
import { BagOfWordsBrowserCommand } from './../commands/ai/bag-of-words/browser/BagOfWordsBrowserCommand';
import { AiContextSearchBrowserCommand } from './../commands/ai/context/search/browser/AiContextSearchBrowserCommand';
import { AiContextSliceBrowserCommand } from './../commands/ai/context/slice/browser/AiContextSliceBrowserCommand';
import { AICostBrowserCommand } from './../commands/ai/cost/browser/AICostBrowserCommand';
import { AiDetectSemanticLoopBrowserCommand } from './../commands/ai/detect-semantic-loop/browser/AiDetectSemanticLoopBrowserCommand';
import { AIGenerateBrowserCommand } from './../commands/ai/generate/browser/AIGenerateBrowserCommand';
import { GenomeStatsBrowserCommand } from './../commands/ai/genome/stats/browser/GenomeStatsBrowserCommand';
import { AiKeyTestBrowserCommand } from './../commands/ai/key/test/browser/AiKeyTestBrowserCommand';
import { ModelFindBrowserCommand } from './../commands/ai/model/find/browser/ModelFindBrowserCommand';
import { ModelListBrowserCommand } from './../commands/ai/model/list/browser/ModelListBrowserCommand';
import { AIProvidersStatusBrowserCommand } from './../commands/ai/providers/status/browser/AIProvidersStatusBrowserCommand';
import { AIReportBrowserCommand } from './../commands/ai/report/browser/AIReportBrowserCommand';
import { ShouldRespondFastBrowserCommand } from './../commands/ai/should-respond-fast/browser/ShouldRespondFastBrowserCommand';
import { AIShouldRespondBrowserCommand } from './../commands/ai/should-respond/browser/AIShouldRespondBrowserCommand';
import { AiSleepBrowserCommand } from './../commands/ai/sleep/browser/AiSleepBrowserCommand';
import { AIStatusBrowserCommand } from './../commands/ai/status/browser/AIStatusBrowserCommand';
import { ThoughtStreamBrowserCommand } from './../commands/ai/thoughtstream/browser/ThoughtStreamBrowserCommand';
import { AIValidateResponseBrowserCommand } from './../commands/ai/validate-response/browser/AIValidateResponseBrowserCommand';
import { CanvasStrokeAddBrowserCommand } from './../commands/canvas/stroke/add/browser/CanvasStrokeAddBrowserCommand';
import { CanvasStrokeListBrowserCommand } from './../commands/canvas/stroke/list/browser/CanvasStrokeListBrowserCommand';
import { CanvasVisionBrowserCommand } from './../commands/canvas/vision/browser/CanvasVisionBrowserCommand';
import { CodeDiffBrowserCommand } from './../commands/code/diff/browser/CodeDiffBrowserCommand';
import { CodeEditBrowserCommand } from './../commands/code/edit/browser/CodeEditBrowserCommand';
import { CodeGitBrowserCommand } from './../commands/code/git/browser/CodeGitBrowserCommand';
import { CodeHistoryBrowserCommand } from './../commands/code/history/browser/CodeHistoryBrowserCommand';
import { CodeReadBrowserCommand } from './../commands/code/read/browser/CodeReadBrowserCommand';
import { CodeSearchBrowserCommand } from './../commands/code/search/browser/CodeSearchBrowserCommand';
import { CodeShellExecuteBrowserCommand } from './../commands/code/shell/execute/browser/CodeShellExecuteBrowserCommand';
import { CodeShellKillBrowserCommand } from './../commands/code/shell/kill/browser/CodeShellKillBrowserCommand';
import { CodeShellSentinelBrowserCommand } from './../commands/code/shell/sentinel/browser/CodeShellSentinelBrowserCommand';
import { CodeShellStatusBrowserCommand } from './../commands/code/shell/status/browser/CodeShellStatusBrowserCommand';
import { CodeShellWatchBrowserCommand } from './../commands/code/shell/watch/browser/CodeShellWatchBrowserCommand';
import { CodeTreeBrowserCommand } from './../commands/code/tree/browser/CodeTreeBrowserCommand';
import { CodeUndoBrowserCommand } from './../commands/code/undo/browser/CodeUndoBrowserCommand';
import { CodeVerifyBrowserCommand } from './../commands/code/verify/browser/CodeVerifyBrowserCommand';
import { CodeWriteBrowserCommand } from './../commands/code/write/browser/CodeWriteBrowserCommand';
import { ActivityUserPresentCommand } from './../commands/collaboration/activity/user-present/browser/ActivityUserPresentCommand';
import { ChatAnalyzeBrowserCommand } from './../commands/collaboration/chat/analyze/browser/ChatAnalyzeBrowserCommand';
import { ChatExportBrowserCommand } from './../commands/collaboration/chat/export/browser/ChatExportBrowserCommand';
import { ChatPollBrowserCommand } from './../commands/collaboration/chat/poll/browser/ChatPollBrowserCommand';
import { ChatSendBrowserCommand } from './../commands/collaboration/chat/send/browser/ChatSendBrowserCommand';
import { ContentOpenBrowserCommand } from './../commands/collaboration/content/open/browser/ContentOpenBrowserCommand';
import { DecisionCreateBrowserCommand } from './../commands/collaboration/decision/create/browser/DecisionCreateBrowserCommand';
import { DecisionFinalizeBrowserCommand } from './../commands/collaboration/decision/finalize/browser/DecisionFinalizeBrowserCommand';
import { DecisionListBrowserCommand } from './../commands/collaboration/decision/list/browser/DecisionListBrowserCommand';
import { DecisionProposeBrowserCommand } from './../commands/collaboration/decision/propose/browser/DecisionProposeBrowserCommand';
import { DecisionRankBrowserCommand } from './../commands/collaboration/decision/rank/browser/DecisionRankBrowserCommand';
import { DecisionViewBrowserCommand } from './../commands/collaboration/decision/view/browser/DecisionViewBrowserCommand';
import { DecisionVoteBrowserCommand } from './../commands/collaboration/decision/vote/browser/DecisionVoteBrowserCommand';
import { DmBrowserCommand } from './../commands/collaboration/dm/browser/DmBrowserCommand';
import { LiveJoinBrowserCommand } from './../commands/collaboration/live/join/browser/LiveJoinBrowserCommand';
import { LiveLeaveBrowserCommand } from './../commands/collaboration/live/leave/browser/LiveLeaveBrowserCommand';
import { CollaborationLiveStartBrowserCommand } from './../commands/collaboration/live/start/browser/CollaborationLiveStartBrowserCommand';
import { CollaborationLiveTranscriptionBrowserCommand } from './../commands/collaboration/live/transcription/browser/CollaborationLiveTranscriptionBrowserCommand';
import { WallListBrowserCommand } from './../commands/collaboration/wall/list/browser/WallListBrowserCommand';
import { WallReadBrowserCommand } from './../commands/collaboration/wall/read/browser/WallReadBrowserCommand';
import { WallWriteBrowserCommand } from './../commands/collaboration/wall/write/browser/WallWriteBrowserCommand';
import { EmotionBrowserCommand } from './../commands/continuum/emotion/browser/EmotionBrowserCommand';
import { ContinuumSetBrowserCommand } from './../commands/continuum/set/browser/ContinuumSetBrowserCommand';
import { BackfillVectorsBrowserCommand } from './../commands/data/backfill-vectors/browser/BackfillVectorsBrowserCommand';
import { DataClearBrowserCommand } from './../commands/data/clear/browser/DataClearBrowserCommand';
import { DataCloseBrowserCommand } from './../commands/data/close/browser/DataCloseBrowserCommand';
import { DataCreateBrowserCommand } from './../commands/data/create/browser/DataCreateBrowserCommand';
import { DataDeleteBrowserCommand } from './../commands/data/delete/browser/DataDeleteBrowserCommand';
import { GenerateEmbeddingBrowserCommand } from './../commands/data/generate-embedding/browser/GenerateEmbeddingBrowserCommand';
import { DataListHandlesBrowserCommand } from './../commands/data/list-handles/browser/DataListHandlesBrowserCommand';
import { DataListBrowserCommand } from './../commands/data/list/browser/DataListBrowserCommand';
import { DataOpenBrowserCommand } from './../commands/data/open/browser/DataOpenBrowserCommand';
import { QueryCloseBrowserCommand } from './../commands/data/query-close/browser/QueryCloseBrowserCommand';
import { QueryNextBrowserCommand } from './../commands/data/query-next/browser/QueryNextBrowserCommand';
import { QueryOpenBrowserCommand } from './../commands/data/query-open/browser/QueryOpenBrowserCommand';
import { DataReadBrowserCommand } from './../commands/data/read/browser/DataReadBrowserCommand';
import { DataSchemaBrowserCommand } from './../commands/data/schema/browser/DataSchemaBrowserCommand';
import { DataTruncateBrowserCommand } from './../commands/data/truncate/browser/DataTruncateBrowserCommand';
import { DataUpdateBrowserCommand } from './../commands/data/update/browser/DataUpdateBrowserCommand';
import { VectorSearchBrowserCommand } from './../commands/data/vector-search/browser/VectorSearchBrowserCommand';
import { DevelopmentBuildBrowserCommand } from './../commands/development/build/browser/DevelopmentBuildBrowserCommand';
import { CompileTypescriptBrowserCommand } from './../commands/development/compile-typescript/browser/CompileTypescriptBrowserCommand';
import { ArtifactsCheckBrowserCommand } from './../commands/development/debug/artifacts-check/browser/ArtifactsCheckBrowserCommand';
import { ChatSendDebugBrowserCommand } from './../commands/development/debug/chat-send/browser/ChatSendDebugBrowserCommand';
import { CrudSyncBrowserCommand } from './../commands/development/debug/crud-sync/browser/CrudSyncBrowserCommand';
import { DebugErrorBrowserCommand } from './../commands/development/debug/error/browser/DebugErrorBrowserCommand';
import { HtmlInspectorBrowserCommand } from './../commands/development/debug/html-inspector/browser/HtmlInspectorBrowserCommand';
import { ScrollTestBrowserCommand } from './../commands/development/debug/scroll-test/browser/ScrollTestBrowserCommand';
import { WidgetCSSBrowserCommand } from './../commands/development/debug/widget-css/browser/WidgetCSSBrowserCommand';
import { WidgetEventsDebugBrowserCommand } from './../commands/development/debug/widget-events/browser/WidgetEventsDebugBrowserCommand';
import { WidgetInteractBrowserCommand } from './../commands/development/debug/widget-interact/browser/WidgetInteractBrowserCommand';
import { WidgetStateBrowserCommand } from './../commands/development/debug/widget-state/browser/WidgetStateBrowserCommand';
import { ExecBrowserCommand } from './../commands/development/exec/browser/ExecBrowserCommand';
import { GenerateAuditBrowserCommand } from './../commands/development/generate/audit/browser/GenerateAuditBrowserCommand';
import { GenerateBrowserCommand } from './../commands/development/generate/browser/GenerateBrowserCommand';
import { SchemaGenerateBrowserCommand } from './../commands/development/schema/generate/browser/SchemaGenerateBrowserCommand';
import { ShellExecuteBrowserCommand } from './../commands/development/shell/execute/browser/ShellExecuteBrowserCommand';
import { FileAppendBrowserCommand } from './../commands/file/append/browser/FileAppendBrowserCommand';
import { FileLoadBrowserCommand } from './../commands/file/load/browser/FileLoadBrowserCommand';
import { FileMimeTypeBrowserCommand } from './../commands/file/mime-type/browser/FileMimeTypeBrowserCommand';
import { FileSaveBrowserCommand } from './../commands/file/save/browser/FileSaveBrowserCommand';
import { GenomeAcademyCompetitionBrowserCommand } from './../commands/genome/academy-competition/browser/GenomeAcademyCompetitionBrowserCommand';
import { GenomeAcademySessionBrowserCommand } from './../commands/genome/academy-session/browser/GenomeAcademySessionBrowserCommand';
import { GenomeBatchMicroTuneBrowserCommand } from './../commands/genome/batch-micro-tune/browser/GenomeBatchMicroTuneBrowserCommand';
import { GenomeDatasetPrepareBrowserCommand } from './../commands/genome/dataset-prepare/browser/GenomeDatasetPrepareBrowserCommand';
import { GenomeDatasetSynthesizeBrowserCommand } from './../commands/genome/dataset-synthesize/browser/GenomeDatasetSynthesizeBrowserCommand';
import { GenomeDemoRunBrowserCommand } from './../commands/genome/demo-run/browser/GenomeDemoRunBrowserCommand';
import { GenomeJobCreateBrowserCommand } from './../commands/genome/job-create/browser/GenomeJobCreateBrowserCommand';
import { GenomeJobStatusBrowserCommand } from './../commands/genome/job-status/browser/GenomeJobStatusBrowserCommand';
import { GenomeTrainBrowserCommand } from './../commands/genome/train/browser/GenomeTrainBrowserCommand';
import { GenomeTrainingExportBrowserCommand } from './../commands/genome/training-export/browser/GenomeTrainingExportBrowserCommand';
import { GenomeTrainingPipelineBrowserCommand } from './../commands/genome/training-pipeline/browser/GenomeTrainingPipelineBrowserCommand';
import { GpuStatsBrowserCommand } from './../commands/gpu/stats/browser/GpuStatsBrowserCommand';
import { HelpBrowserCommand } from './../commands/help/browser/HelpBrowserCommand';
import { IndicatorBrowserCommand } from './../commands/indicator/browser/IndicatorBrowserCommand';
import { InferenceGenerateBrowserCommand } from './../commands/inference/generate/browser/InferenceGenerateBrowserCommand';
import { InterfaceBrowserCapabilitiesBrowserCommand } from './../commands/interface/browser/capabilities/browser/InterfaceBrowserCapabilitiesBrowserCommand';
import { ClickBrowserCommand } from './../commands/interface/click/browser/ClickBrowserCommand';
import { GetTextBrowserCommand } from './../commands/interface/get-text/browser/GetTextBrowserCommand';
import { InterfaceLaunchUrlBrowserCommand } from './../commands/interface/launch/url/browser/InterfaceLaunchUrlBrowserCommand';
import { NavigateBrowserCommand } from './../commands/interface/navigate/browser/NavigateBrowserCommand';
import { InterfacePageFillBrowserCommand } from './../commands/interface/page/fill/browser/InterfacePageFillBrowserCommand';
import { InterfacePageFormsBrowserCommand } from './../commands/interface/page/forms/browser/InterfacePageFormsBrowserCommand';
import { InterfacePageSubmitBrowserCommand } from './../commands/interface/page/submit/browser/InterfacePageSubmitBrowserCommand';
import { ProxyNavigateBrowserCommand } from './../commands/interface/proxy-navigate/browser/ProxyNavigateBrowserCommand';
import { ScreenshotBrowserCommand } from './../commands/interface/screenshot/browser/ScreenshotBrowserCommand';
import { ScrollBrowserCommand } from './../commands/interface/scroll/browser/ScrollBrowserCommand';
import { TypeBrowserCommand } from './../commands/interface/type/browser/TypeBrowserCommand';
import { WaitForElementBrowserCommand } from './../commands/interface/wait-for-element/browser/WaitForElementBrowserCommand';
import { WebFetchBrowserCommand } from './../commands/interface/web/fetch/browser/WebFetchBrowserCommand';
import { InterfaceWebmcpCallBrowserCommand } from './../commands/interface/webmcp/call/browser/InterfaceWebmcpCallBrowserCommand';
import { InterfaceWebmcpDiscoverBrowserCommand } from './../commands/interface/webmcp/discover/browser/InterfaceWebmcpDiscoverBrowserCommand';
import { ListBrowserCommand } from './../commands/list/browser/ListBrowserCommand';
import { LoggingDisableBrowserCommand } from './../commands/logging/disable/browser/LoggingDisableBrowserCommand';
import { LoggingEnableBrowserCommand } from './../commands/logging/enable/browser/LoggingEnableBrowserCommand';
import { LoggingStatusBrowserCommand } from './../commands/logging/status/browser/LoggingStatusBrowserCommand';
import { LogsConfigBrowserCommand } from './../commands/logs/config/browser/LogsConfigBrowserCommand';
import { LogsListBrowserCommand } from './../commands/logs/list/browser/LogsListBrowserCommand';
import { LogsReadBrowserCommand } from './../commands/logs/read/browser/LogsReadBrowserCommand';
import { LogsSearchBrowserCommand } from './../commands/logs/search/browser/LogsSearchBrowserCommand';
import { LogsStatsBrowserCommand } from './../commands/logs/stats/browser/LogsStatsBrowserCommand';
import { MediaProcessBrowserCommand } from './../commands/media/process/browser/MediaProcessBrowserCommand';
import { MediaResizeBrowserCommand } from './../commands/media/resize/browser/MediaResizeBrowserCommand';
import { MigrationCutoverBrowserCommand } from './../commands/migration/cutover/browser/MigrationCutoverBrowserCommand';
import { MigrationPauseBrowserCommand } from './../commands/migration/pause/browser/MigrationPauseBrowserCommand';
import { MigrationResumeBrowserCommand } from './../commands/migration/resume/browser/MigrationResumeBrowserCommand';
import { MigrationRollbackBrowserCommand } from './../commands/migration/rollback/browser/MigrationRollbackBrowserCommand';
import { MigrationStartBrowserCommand } from './../commands/migration/start/browser/MigrationStartBrowserCommand';
import { MigrationStatusBrowserCommand } from './../commands/migration/status/browser/MigrationStatusBrowserCommand';
import { MigrationVerifyBrowserCommand } from './../commands/migration/verify/browser/MigrationVerifyBrowserCommand';
import { PersonaGenomeBrowserCommand } from './../commands/persona/genome/browser/PersonaGenomeBrowserCommand';
import { GenomeCaptureFeedbackBrowserCommand } from './../commands/persona/learning/capture-feedback/browser/GenomeCaptureFeedbackBrowserCommand';
import { GenomeCaptureInteractionBrowserCommand } from './../commands/persona/learning/capture-interaction/browser/GenomeCaptureInteractionBrowserCommand';
import { GenomeMultiAgentLearnBrowserCommand } from './../commands/persona/learning/multi-agent-learn/browser/GenomeMultiAgentLearnBrowserCommand';
import { PersonaLearningPatternCaptureBrowserCommand } from './../commands/persona/learning/pattern/capture/browser/PersonaLearningPatternCaptureBrowserCommand';
import { PersonaLearningPatternEndorseBrowserCommand } from './../commands/persona/learning/pattern/endorse/browser/PersonaLearningPatternEndorseBrowserCommand';
import { PersonaLearningPatternQueryBrowserCommand } from './../commands/persona/learning/pattern/query/browser/PersonaLearningPatternQueryBrowserCommand';
import { PingBrowserCommand } from './../commands/ping/browser/PingBrowserCommand';
import { PositronCursorBrowserCommand } from './../commands/positron/cursor/browser/PositronCursorBrowserCommand';
import { ProcessRegistryBrowserCommand } from './../commands/process-registry/browser/ProcessRegistryBrowserCommand';
import { RuntimeMetricsBrowserCommand } from './../commands/runtime/metrics/browser/RuntimeMetricsBrowserCommand';
import { SentinelCodingAgentBrowserCommand } from './../commands/sentinel/coding-agent/browser/SentinelCodingAgentBrowserCommand';
import { SentinelRunBrowserCommand } from './../commands/sentinel/run/browser/SentinelRunBrowserCommand';
import { SentinelStatusBrowserCommand } from './../commands/sentinel/status/browser/SentinelStatusBrowserCommand';
import { SessionCreateBrowserCommand } from './../commands/session/create/browser/SessionCreateBrowserCommand';
import { SessionDestroyBrowserCommand } from './../commands/session/destroy/browser/SessionDestroyBrowserCommand';
import { SessionGetIdBrowserCommand } from './../commands/session/get-id/browser/SessionGetIdBrowserCommand';
import { SessionGetUserBrowserCommand } from './../commands/session/get-user/browser/SessionGetUserBrowserCommand';
import { SkillActivateBrowserCommand } from './../commands/skill/activate/browser/SkillActivateBrowserCommand';
import { SkillGenerateBrowserCommand } from './../commands/skill/generate/browser/SkillGenerateBrowserCommand';
import { SkillListBrowserCommand } from './../commands/skill/list/browser/SkillListBrowserCommand';
import { SkillProposeBrowserCommand } from './../commands/skill/propose/browser/SkillProposeBrowserCommand';
import { SkillValidateBrowserCommand } from './../commands/skill/validate/browser/SkillValidateBrowserCommand';
import { SocialBrowseBrowserCommand } from './../commands/social/browse/browser/SocialBrowseBrowserCommand';
import { SocialClassifyBrowserCommand } from './../commands/social/classify/browser/SocialClassifyBrowserCommand';
import { SocialCommentBrowserCommand } from './../commands/social/comment/browser/SocialCommentBrowserCommand';
import { SocialCommunityBrowserCommand } from './../commands/social/community/browser/SocialCommunityBrowserCommand';
import { SocialDownvoteBrowserCommand } from './../commands/social/downvote/browser/SocialDownvoteBrowserCommand';
import { SocialEngageBrowserCommand } from './../commands/social/engage/browser/SocialEngageBrowserCommand';
import { SocialFeedBrowserCommand } from './../commands/social/feed/browser/SocialFeedBrowserCommand';
import { SocialNotificationsBrowserCommand } from './../commands/social/notifications/browser/SocialNotificationsBrowserCommand';
import { SocialPostBrowserCommand } from './../commands/social/post/browser/SocialPostBrowserCommand';
import { SocialProfileBrowserCommand } from './../commands/social/profile/browser/SocialProfileBrowserCommand';
import { SocialProposeBrowserCommand } from './../commands/social/propose/browser/SocialProposeBrowserCommand';
import { SocialSearchBrowserCommand } from './../commands/social/search/browser/SocialSearchBrowserCommand';
import { SocialSignupBrowserCommand } from './../commands/social/signup/browser/SocialSignupBrowserCommand';
import { SocialTrendingBrowserCommand } from './../commands/social/trending/browser/SocialTrendingBrowserCommand';
import { StateContentCloseBrowserCommand } from './../commands/state/content/close/browser/StateContentCloseBrowserCommand';
import { StateContentSwitchBrowserCommand } from './../commands/state/content/switch/browser/StateContentSwitchBrowserCommand';
import { StateCreateBrowserCommand } from './../commands/state/create/browser/StateCreateBrowserCommand';
import { StateGetBrowserCommand } from './../commands/state/get/browser/StateGetBrowserCommand';
import { StateUpdateBrowserCommand } from './../commands/state/update/browser/StateUpdateBrowserCommand';
import { DaemonsBrowserCommand } from './../commands/system/daemons/browser/DaemonsBrowserCommand';
import { ThemeGetBrowserCommand } from './../commands/theme/get/browser/ThemeGetBrowserCommand';
import { ThemeListBrowserCommand } from './../commands/theme/list/browser/ThemeListBrowserCommand';
import { ThemeSetBrowserCommand } from './../commands/theme/set/browser/ThemeSetBrowserCommand';
import { TrainingImportBrowserCommand } from './../commands/training/import/browser/TrainingImportBrowserCommand';
import { UserCreateBrowserCommand } from './../commands/user/create/browser/UserCreateBrowserCommand';
import { UserGetMeBrowserCommand } from './../commands/user/get-me/browser/UserGetMeBrowserCommand';
import { DocsListBrowserCommand } from './../commands/utilities/docs/list/browser/DocsListBrowserCommand';
import { DocsReadBrowserCommand } from './../commands/utilities/docs/read/browser/DocsReadBrowserCommand';
import { DocsSearchBrowserCommand } from './../commands/utilities/docs/search/browser/DocsSearchBrowserCommand';
import { HelloBrowserCommand } from './../commands/utilities/hello/browser/HelloBrowserCommand';
import { VoiceStartBrowserCommand } from './../commands/voice/start/browser/VoiceStartBrowserCommand';
import { VoiceStopBrowserCommand } from './../commands/voice/stop/browser/VoiceStopBrowserCommand';
import { VoiceSynthesizeBrowserCommand } from './../commands/voice/synthesize/browser/VoiceSynthesizeBrowserCommand';
import { VoiceTranscribeBrowserCommand } from './../commands/voice/transcribe/browser/VoiceTranscribeBrowserCommand';
import { GitCommitBrowserCommand } from './../commands/workspace/git/commit/browser/GitCommitBrowserCommand';
import { GitPushBrowserCommand } from './../commands/workspace/git/push/browser/GitPushBrowserCommand';
import { GitStatusBrowserCommand } from './../commands/workspace/git/status/browser/GitStatusBrowserCommand';
import { GitWorkspaceCleanBrowserCommand } from './../commands/workspace/git/workspace/clean/browser/GitWorkspaceCleanBrowserCommand';
import { GitWorkspaceInitBrowserCommand } from './../commands/workspace/git/workspace/init/browser/GitWorkspaceInitBrowserCommand';
import { WorkspaceListBrowserCommand } from './../commands/workspace/list/browser/WorkspaceListBrowserCommand';
import { RecipeLoadBrowserCommand } from './../commands/workspace/recipe/load/browser/RecipeLoadBrowserCommand';
import { TaskCompleteBrowserCommand } from './../commands/workspace/task/complete/browser/TaskCompleteBrowserCommand';
import { TaskCreateBrowserCommand } from './../commands/workspace/task/create/browser/TaskCreateBrowserCommand';
import { TaskListBrowserCommand } from './../commands/workspace/task/list/browser/TaskListBrowserCommand';
import { TreeBrowserCommand } from './../commands/workspace/tree/browser/TreeBrowserCommand';
// Browser adapters Imports
import { UDPMulticastTransportBrowser } from './../system/transports/udp-multicast-transport/browser/UDPMulticastTransportBrowser';
import { WebSocketTransportClientBrowser } from './../system/transports/websocket-transport/browser/WebSocketTransportClientBrowser';
// Browser widgets Imports
import { ChatWidget } from './../widgets/chat/chat-widget/ChatWidget';
import { DMListWidget } from './../widgets/chat/dm-list/DMListWidget';
import { RoomListWidget } from './../widgets/chat/room-list/RoomListWidget';
import { UserListWidget } from './../widgets/chat/user-list/UserListWidget';
import { ContentTabsWidget } from './../widgets/content-tabs/ContentTabsWidget';
import { ContinuumEmoterWidget } from './../widgets/continuum-emoter/ContinuumEmoterWidget';
import { ContinuumMetricsWidget } from './../widgets/continuum-metrics/ContinuumMetricsWidget';
import { ContinuumWidget } from './../widgets/continuum/ContinuumWidget';
import { DiagnosticsWidget } from './../widgets/diagnostics/DiagnosticsWidget';
import { DrawingCanvasWidget } from './../widgets/drawing-canvas/DrawingCanvasWidget';
import { HeaderControlsWidget } from './../widgets/header-controls/HeaderControlsWidget';
import { HelpWidget } from './../widgets/help/HelpWidget';
import { LiveWidget } from './../widgets/live/LiveWidget';
import { LogViewerWidget } from './../widgets/log-viewer/LogViewerWidget';
import { LogsNavWidget } from './../widgets/logs-nav/LogsNavWidget';
import { MainWidget } from './../widgets/main/MainWidget';
import { PersonaBrainWidget } from './../widgets/persona-brain/PersonaBrainWidget';
import { PositronCursorWidget } from './../widgets/positron-cursor/PositronCursorWidget';
import { RightPanelWidget } from './../widgets/right-panel/RightPanelWidget';
import { SettingsNavWidget } from './../widgets/settings-nav/SettingsNavWidget';
import { SettingsAssistantWidget } from './../widgets/settings/SettingsAssistantWidget';
import { SettingsWidget } from './../widgets/settings/SettingsWidget';
import { PanelLayoutWidget } from './../widgets/shared/PanelLayoutWidget';
import { ThemeWidget } from './../widgets/shared/ThemeWidget';
import { SidebarWidget } from './../widgets/sidebar/SidebarWidget';
import { TerminalWidget } from './../widgets/terminal/TerminalWidget';
import { UserProfileWidget } from './../widgets/user-profile/UserProfileWidget';
import { WebViewWidget } from './../widgets/web-view/WebViewWidget';
// Types
import type { DaemonEntry } from './../daemons/command-daemon/shared/DaemonBase';
import type { CommandEntry } from './../daemons/command-daemon/shared/CommandBase';
import type { AdapterEntry } from './../system/transports/shared/TransportBase';
import type { WidgetEntry } from './../widgets/shared/WidgetBase';
/**
* Browser Environment Registry
*/
export const BROWSER_DAEMONS: DaemonEntry[] = [
{
name: 'ArchiveDaemon',
className: 'ArchiveDaemonBrowser',
daemonClass: ArchiveDaemonBrowser
},
{
name: 'ArtifactsDaemon',
className: 'ArtifactsDaemonBrowser',
daemonClass: ArtifactsDaemonBrowser
},
{
name: 'CommandDaemon',
className: 'CommandDaemonBrowser',
daemonClass: CommandDaemonBrowser
},
{
name: 'ConsoleDaemon',
className: 'ConsoleDaemonBrowser',
daemonClass: ConsoleDaemonBrowser
},
{
name: 'DataDaemon',
className: 'DataDaemonBrowser',
daemonClass: DataDaemonBrowser
},
{
name: 'EventsDaemon',
className: 'EventsDaemonBrowser',
daemonClass: EventsDaemonBrowser
},
{
name: 'HealthDaemon',
className: 'HealthDaemonBrowser',
daemonClass: HealthDaemonBrowser
},
{
name: 'LoggerDaemon',
className: 'LoggerDaemonBrowser',
daemonClass: LoggerDaemonBrowser
},
{
name: 'SessionDaemon',
className: 'SessionDaemonBrowser',
daemonClass: SessionDaemonBrowser
},
{
name: 'UserDaemon',
className: 'UserDaemonBrowser',
daemonClass: UserDaemonBrowser
},
{
name: 'WidgetDaemon',
className: 'WidgetDaemonBrowser',
daemonClass: WidgetDaemonBrowser
}
];
export const BROWSER_COMMANDS: CommandEntry[] = [
{
name: 'adapter/adopt',
className: 'AdapterAdoptBrowserCommand',
commandClass: AdapterAdoptBrowserCommand
},
{
name: 'adapter/search',
className: 'AdapterSearchBrowserCommand',
commandClass: AdapterSearchBrowserCommand
},
{
name: 'adapter/try',
className: 'AdapterTryBrowserCommand',
commandClass: AdapterTryBrowserCommand
},
{
name: 'agent/list',
className: 'AgentListBrowserCommand',
commandClass: AgentListBrowserCommand
},
{
name: 'agent/start',
className: 'AgentStartBrowserCommand',
commandClass: AgentStartBrowserCommand
},
{
name: 'agent/status',
className: 'AgentStatusBrowserCommand',
commandClass: AgentStatusBrowserCommand
},
{
name: 'agent/stop',
className: 'AgentStopBrowserCommand',
commandClass: AgentStopBrowserCommand
},
{
name: 'ai/agent',
className: 'AiAgentBrowserCommand',
commandClass: AiAgentBrowserCommand
},
{
name: 'ai/bag-of-words',
className: 'BagOfWordsBrowserCommand',
commandClass: BagOfWordsBrowserCommand
},
{
name: 'ai/context/search',
className: 'AiContextSearchBrowserCommand',
commandClass: AiContextSearchBrowserCommand
},
{
name: 'ai/context/slice',
className: 'AiContextSliceBrowserCommand',
commandClass: AiContextSliceBrowserCommand
},
{
name: 'ai/cost',
className: 'AICostBrowserCommand',
commandClass: AICostBrowserCommand
},
{
name: 'ai/detect-semantic-loop',
className: 'AiDetectSemanticLoopBrowserCommand',
commandClass: AiDetectSemanticLoopBrowserCommand
},
{
name: 'ai/generate',
className: 'AIGenerateBrowserCommand',
commandClass: AIGenerateBrowserCommand
},
{
name: 'ai/genome/stats',
className: 'GenomeStatsBrowserCommand',
commandClass: GenomeStatsBrowserCommand
},
{
name: 'ai/key/test',
className: 'AiKeyTestBrowserCommand',
commandClass: AiKeyTestBrowserCommand
},
{
name: 'ai/model/find',
className: 'ModelFindBrowserCommand',
commandClass: ModelFindBrowserCommand
},
{
name: 'ai/model/list',
className: 'ModelListBrowserCommand',
commandClass: ModelListBrowserCommand
},
{
name: 'ai/providers/status',
className: 'AIProvidersStatusBrowserCommand',
commandClass: AIProvidersStatusBrowserCommand
},
{
name: 'ai/report',
className: 'AIReportBrowserCommand',
commandClass: AIReportBrowserCommand
},
{
name: 'ai/should-respond-fast',
className: 'ShouldRespondFastBrowserCommand',
commandClass: ShouldRespondFastBrowserCommand
},
{
name: 'ai/should-respond',
className: 'AIShouldRespondBrowserCommand',
commandClass: AIShouldRespondBrowserCommand
},
{
name: 'ai/sleep',
className: 'AiSleepBrowserCommand',
commandClass: AiSleepBrowserCommand
},
{
name: 'ai/status',
className: 'AIStatusBrowserCommand',
commandClass: AIStatusBrowserCommand
},
{
name: 'ai/thoughtstream',
className: 'ThoughtStreamBrowserCommand',
commandClass: ThoughtStreamBrowserCommand
},
{
name: 'ai/validate-response',
className: 'AIValidateResponseBrowserCommand',
commandClass: AIValidateResponseBrowserCommand
},
{
name: 'canvas/stroke/add',
className: 'CanvasStrokeAddBrowserCommand',
commandClass: CanvasStrokeAddBrowserCommand
},
{
name: 'canvas/stroke/list',
className: 'CanvasStrokeListBrowserCommand',
commandClass: CanvasStrokeListBrowserCommand
},
{
name: 'canvas/vision',
className: 'CanvasVisionBrowserCommand',
commandClass: CanvasVisionBrowserCommand
},
{
name: 'code/diff',
className: 'CodeDiffBrowserCommand',
commandClass: CodeDiffBrowserCommand
},
{
name: 'code/edit',
className: 'CodeEditBrowserCommand',
commandClass: CodeEditBrowserCommand
},
{
name: 'code/git',
className: 'CodeGitBrowserCommand',
commandClass: CodeGitBrowserCommand
},
{
name: 'code/history',
className: 'CodeHistoryBrowserCommand',
commandClass: CodeHistoryBrowserCommand
},
{
name: 'code/read',
className: 'CodeReadBrowserCommand',
commandClass: CodeReadBrowserCommand
},
{
name: 'code/search',
className: 'CodeSearchBrowserCommand',
commandClass: CodeSearchBrowserCommand
},
{
name: 'code/shell/execute',
className: 'CodeShellExecuteBrowserCommand',
commandClass: CodeShellExecuteBrowserCommand
},
{
name: 'code/shell/kill',
className: 'CodeShellKillBrowserCommand',
commandClass: CodeShellKillBrowserCommand
},
{
name: 'code/shell/sentinel',
className: 'CodeShellSentinelBrowserCommand',
commandClass: CodeShellSentinelBrowserCommand
},
{
name: 'code/shell/status',
className: 'CodeShellStatusBrowserCommand',
commandClass: CodeShellStatusBrowserCommand
},
{
name: 'code/shell/watch',
className: 'CodeShellWatchBrowserCommand',
commandClass: CodeShellWatchBrowserCommand
},
{
name: 'code/tree',
className: 'CodeTreeBrowserCommand',
commandClass: CodeTreeBrowserCommand
},
{
name: 'code/undo',
className: 'CodeUndoBrowserCommand',
commandClass: CodeUndoBrowserCommand
},
{
name: 'code/verify',
className: 'CodeVerifyBrowserCommand',
commandClass: CodeVerifyBrowserCommand
},
{
name: 'code/write',
className: 'CodeWriteBrowserCommand',
commandClass: CodeWriteBrowserCommand
},
{
name: 'collaboration/activity/user-present',
className: 'ActivityUserPresentCommand',
commandClass: ActivityUserPresentCommand
},
{
name: 'collaboration/chat/analyze',
className: 'ChatAnalyzeBrowserCommand',
commandClass: ChatAnalyzeBrowserCommand
},
{
name: 'collaboration/chat/export',
className: 'ChatExportBrowserCommand',
commandClass: ChatExportBrowserCommand
},
{
name: 'collaboration/chat/poll',
className: 'ChatPollBrowserCommand',
commandClass: ChatPollBrowserCommand
},
{
name: 'collaboration/chat/send',
className: 'ChatSendBrowserCommand',
commandClass: ChatSendBrowserCommand
},
{
name: 'collaboration/content/open',
className: 'ContentOpenBrowserCommand',
commandClass: ContentOpenBrowserCommand
},
{
name: 'collaboration/decision/create',
className: 'DecisionCreateBrowserCommand',
commandClass: DecisionCreateBrowserCommand
},
{
name: 'collaboration/decision/finalize',
className: 'DecisionFinalizeBrowserCommand',
commandClass: DecisionFinalizeBrowserCommand
},
{
name: 'collaboration/decision/list',
className: 'DecisionListBrowserCommand',
commandClass: DecisionListBrowserCommand
},
{
name: 'collaboration/decision/propose',
className: 'DecisionProposeBrowserCommand',
commandClass: DecisionProposeBrowserCommand
},
{
name: 'collaboration/decision/rank',
className: 'DecisionRankBrowserCommand',
commandClass: DecisionRankBrowserCommand
},
{
name: 'collaboration/decision/view',
className: 'DecisionViewBrowserCommand',
commandClass: DecisionViewBrowserCommand
},
{
name: 'collaboration/decision/vote',
className: 'DecisionVoteBrowserCommand',
commandClass: DecisionVoteBrowserCommand
},
{
name: 'collaboration/dm',
className: 'DmBrowserCommand',
commandClass: DmBrowserCommand
},
{
name: 'collaboration/live/join',
className: 'LiveJoinBrowserCommand',
commandClass: LiveJoinBrowserCommand
},
{
name: 'collaboration/live/leave',
className: 'LiveLeaveBrowserCommand',
commandClass: LiveLeaveBrowserCommand
},
{
name: 'collaboration/live/start',
className: 'CollaborationLiveStartBrowserCommand',
commandClass: CollaborationLiveStartBrowserCommand
},
{
name: 'collaboration/live/transcription',
className: 'CollaborationLiveTranscriptionBrowserCommand',
commandClass: CollaborationLiveTranscriptionBrowserCommand
},
{
name: 'collaboration/wall/list',
className: 'WallListBrowserCommand',
commandClass: WallListBrowserCommand
},
{
name: 'collaboration/wall/read',
className: 'WallReadBrowserCommand',
commandClass: WallReadBrowserCommand
},
{
name: 'collaboration/wall/write',
className: 'WallWriteBrowserCommand',
commandClass: WallWriteBrowserCommand
},
{
name: 'continuum/emotion',
className: 'EmotionBrowserCommand',
commandClass: EmotionBrowserCommand
},
{
name: 'continuum/set',
className: 'ContinuumSetBrowserCommand',
commandClass: ContinuumSetBrowserCommand
},
{
name: 'data/backfill-vectors',
className: 'BackfillVectorsBrowserCommand',
commandClass: BackfillVectorsBrowserCommand
},
{
name: 'data/clear',
className: 'DataClearBrowserCommand',
commandClass: DataClearBrowserCommand
},
{
name: 'data/close',
className: 'DataCloseBrowserCommand',
commandClass: DataCloseBrowserCommand
},
{
name: 'data/create',
className: 'DataCreateBrowserCommand',
commandClass: DataCreateBrowserCommand
},
{
name: 'data/delete',
className: 'DataDeleteBrowserCommand',
commandClass: DataDeleteBrowserCommand
},
{
name: 'data/generate-embedding',
className: 'GenerateEmbeddingBrowserCommand',
commandClass: GenerateEmbeddingBrowserCommand
},
{
name: 'data/list-handles',
className: 'DataListHandlesBrowserCommand',
commandClass: DataListHandlesBrowserCommand
},
{
name: 'data/list',
className: 'DataListBrowserCommand',
commandClass: DataListBrowserCommand
},
{
name: 'data/open',
className: 'DataOpenBrowserCommand',
commandClass: DataOpenBrowserCommand
},
{
name: 'data/query-close',
className: 'QueryCloseBrowserCommand',
commandClass: QueryCloseBrowserCommand
},
{
name: 'data/query-next',
className: 'QueryNextBrowserCommand',
commandClass: QueryNextBrowserCommand
},
{
name: 'data/query-open',
className: 'QueryOpenBrowserCommand',
commandClass: QueryOpenBrowserCommand
},
{
name: 'data/read',
className: 'DataReadBrowserCommand',
commandClass: DataReadBrowserCommand
},
{
name: 'data/schema',
className: 'DataSchemaBrowserCommand',
commandClass: DataSchemaBrowserCommand
},
{
name: 'data/truncate',
className: 'DataTruncateBrowserCommand',
commandClass: DataTruncateBrowserCommand
},
{
name: 'data/update',
className: 'DataUpdateBrowserCommand',
commandClass: DataUpdateBrowserCommand
},
{
name: 'data/vector-search',
className: 'VectorSearchBrowserCommand',
commandClass: VectorSearchBrowserCommand
},
{
name: 'development/build',
className: 'DevelopmentBuildBrowserCommand',
commandClass: DevelopmentBuildBrowserCommand
},
{
name: 'development/compile-typescript',
className: 'CompileTypescriptBrowserCommand',
commandClass: CompileTypescriptBrowserCommand
},
{
name: 'development/debug/artifacts-check',
className: 'ArtifactsCheckBrowserCommand',
commandClass: ArtifactsCheckBrowserCommand
},
{
name: 'development/debug/chat-send',
className: 'ChatSendDebugBrowserCommand',
commandClass: ChatSendDebugBrowserCommand
},
{
name: 'development/debug/crud-sync',
className: 'CrudSyncBrowserCommand',
commandClass: CrudSyncBrowserCommand
},
{
name: 'development/debug/error',
className: 'DebugErrorBrowserCommand',
commandClass: DebugErrorBrowserCommand
},
{
name: 'development/debug/html-inspector',
className: 'HtmlInspectorBrowserCommand',
commandClass: HtmlInspectorBrowserCommand
},
{
name: 'development/debug/scroll-test',
className: 'ScrollTestBrowserCommand',
commandClass: ScrollTestBrowserCommand
},
{
name: 'development/debug/widget-css',
className: 'WidgetCSSBrowserCommand',
commandClass: WidgetCSSBrowserCommand
},
{
name: 'development/debug/widget-events',
className: 'WidgetEventsDebugBrowserCommand',
commandClass: WidgetEventsDebugBrowserCommand
},
{
name: 'development/debug/widget-interact',
className: 'WidgetInteractBrowserCommand',
commandClass: WidgetInteractBrowserCommand
},
{
name: 'development/debug/widget-state',
className: 'WidgetStateBrowserCommand',
commandClass: WidgetStateBrowserCommand
},
{
name: 'development/exec',
className: 'ExecBrowserCommand',
commandClass: ExecBrowserCommand
},
{
name: 'development/generate/audit',
className: 'GenerateAuditBrowserCommand',
commandClass: GenerateAuditBrowserCommand
},
{
name: 'development/generate',
className: 'GenerateBrowserCommand',
commandClass: GenerateBrowserCommand
},
{
name: 'development/schema/generate',
className: 'SchemaGenerateBrowserCommand',
commandClass: SchemaGenerateBrowserCommand
},
{
name: 'development/shell/execute',
className: 'ShellExecuteBrowserCommand',
commandClass: ShellExecuteBrowserCommand
},
{
name: 'file/append',
className: 'FileAppendBrowserCommand',
commandClass: FileAppendBrowserCommand
},
{
name: 'file/load',
className: 'FileLoadBrowserCommand',
commandClass: FileLoadBrowserCommand
},
{
name: 'file/mime-type',
className: 'FileMimeTypeBrowserCommand',
commandClass: FileMimeTypeBrowserCommand
},
{
name: 'file/save',
className: 'FileSaveBrowserCommand',
commandClass: FileSaveBrowserCommand
},
{
name: 'genome/academy-competition',
className: 'GenomeAcademyCompetitionBrowserCommand',
commandClass: GenomeAcademyCompetitionBrowserCommand
},
{
name: 'genome/academy-session',
className: 'GenomeAcademySessionBrowserCommand',
commandClass: GenomeAcademySessionBrowserCommand
},
{
name: 'genome/batch-micro-tune',
className: 'GenomeBatchMicroTuneBrowserCommand',
commandClass: GenomeBatchMicroTuneBrowserCommand
},
{
name: 'genome/dataset-prepare',
className: 'GenomeDatasetPrepareBrowserCommand',
commandClass: GenomeDatasetPrepareBrowserCommand
},
{
name: 'genome/dataset-synthesize',
className: 'GenomeDatasetSynthesizeBrowserCommand',
commandClass: GenomeDatasetSynthesizeBrowserCommand
},
{
name: 'genome/demo-run',
className: 'GenomeDemoRunBrowserCommand',
commandClass: GenomeDemoRunBrowserCommand
},
{
name: 'genome/job-create',
className: 'GenomeJobCreateBrowserCommand',
commandClass: GenomeJobCreateBrowserCommand
},
{
name: 'genome/job-status',
className: 'GenomeJobStatusBrowserCommand',
commandClass: GenomeJobStatusBrowserCommand
},
{
name: 'genome/train',
className: 'GenomeTrainBrowserCommand',
commandClass: GenomeTrainBrowserCommand
},
{
name: 'genome/training-export',
className: 'GenomeTrainingExportBrowserCommand',
commandClass: GenomeTrainingExportBrowserCommand
},
{
name: 'genome/training-pipeline',
className: 'GenomeTrainingPipelineBrowserCommand',
commandClass: GenomeTrainingPipelineBrowserCommand
},
{
name: 'gpu/stats',
className: 'GpuStatsBrowserCommand',
commandClass: GpuStatsBrowserCommand
},
{
name: 'help',
className: 'HelpBrowserCommand',
commandClass: HelpBrowserCommand
},
{
name: 'indicator',
className: 'IndicatorBrowserCommand',
commandClass: IndicatorBrowserCommand
},
{
name: 'inference/generate',
className: 'InferenceGenerateBrowserCommand',
commandClass: InferenceGenerateBrowserCommand
},
{
name: 'interface/browser/capabilities',
className: 'InterfaceBrowserCapabilitiesBrowserCommand',
commandClass: InterfaceBrowserCapabilitiesBrowserCommand
},
{
name: 'interface/click',
className: 'ClickBrowserCommand',
commandClass: ClickBrowserCommand
},
{
name: 'interface/get-text',
className: 'GetTextBrowserCommand',
commandClass: GetTextBrowserCommand
},
{
name: 'interface/launch/url',
className: 'InterfaceLaunchUrlBrowserCommand',
commandClass: InterfaceLaunchUrlBrowserCommand
},
{
name: 'interface/navigate',
className: 'NavigateBrowserCommand',
commandClass: NavigateBrowserCommand
},
{
name: 'interface/page/fill',
className: 'InterfacePageFillBrowserCommand',
commandClass: InterfacePageFillBrowserCommand
},
{
name: 'interface/page/forms',
className: 'InterfacePageFormsBrowserCommand',
commandClass: InterfacePageFormsBrowserCommand
},
{
name: 'interface/page/submit',
className: 'InterfacePageSubmitBrowserCommand',
commandClass: InterfacePageSubmitBrowserCommand
},
{
name: 'interface/proxy-navigate',
className: 'ProxyNavigateBrowserCommand',
commandClass: ProxyNavigateBrowserCommand
},
{
name: 'interface/screenshot',
className: 'ScreenshotBrowserCommand',
commandClass: ScreenshotBrowserCommand
},
{
name: 'interface/scroll',
className: 'ScrollBrowserCommand',
commandClass: ScrollBrowserCommand