loadtoagent 1.1.0 → 1.3.2
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/README.ko.md +14 -5
- package/README.md +7 -0
- package/README.zh-CN.md +7 -0
- package/docs/PROVIDER-CONTRACTS.md +25 -1
- package/docs/UI-AUDIT-100.md +118 -0
- package/docs/UI-AUDIT-101-200.md +120 -0
- package/docs/UI-AUDIT-201-300.md +120 -0
- package/main.js +157 -38
- package/package.json +13 -4
- package/preload.js +13 -2
- package/renderer/app-agent-actions.js +125 -53
- package/renderer/app-bootstrap.js +54 -19
- package/renderer/app-dashboard.js +196 -55
- package/renderer/app-drawer-content.js +48 -44
- package/renderer/app-drawer-data.js +26 -13
- package/renderer/app-drawer.js +72 -54
- package/renderer/app-events-dialogs.js +146 -37
- package/renderer/app-events-filters.js +172 -13
- package/renderer/app-events-navigation.js +77 -30
- package/renderer/app-events-sessions.js +156 -9
- package/renderer/app-events.js +2 -1
- package/renderer/app-graph-model.js +20 -38
- package/renderer/app-graph-orchestration.js +15 -13
- package/renderer/app-graph-view.js +228 -113
- package/renderer/app-management.js +257 -0
- package/renderer/app-provider-visibility.js +124 -0
- package/renderer/app-quality.js +568 -0
- package/renderer/app-run-modal.js +104 -34
- package/renderer/app-runtime-overview.js +312 -0
- package/renderer/app-session-render.js +94 -37
- package/renderer/app-tmux-render.js +52 -44
- package/renderer/app.js +153 -75
- package/renderer/i18n-messages.js +867 -37
- package/renderer/i18n.js +104 -0
- package/renderer/index.html +154 -67
- package/renderer/shared.js +17 -0
- package/renderer/styles-agent-map.css +16 -10
- package/renderer/styles-cards.css +44 -18
- package/renderer/styles-collaboration.css +23 -23
- package/renderer/styles-components.css +122 -45
- package/renderer/styles-management.css +364 -0
- package/renderer/styles-onboarding.css +8 -8
- package/renderer/styles-overlays.css +13 -7
- package/renderer/styles-product.css +48 -40
- package/renderer/styles-quality.css +312 -0
- package/renderer/styles-readability.css +1040 -0
- package/renderer/styles-responsive-product.css +84 -12
- package/renderer/styles-responsive-runtime.css +25 -17
- package/renderer/styles-responsive-shell.css +44 -48
- package/renderer/styles-responsive-workflows.css +39 -5
- package/renderer/styles-run-composer.css +28 -23
- package/renderer/styles-runtime-overview.css +285 -0
- package/renderer/styles-settings.css +176 -16
- package/renderer/styles-terminal.css +374 -37
- package/renderer/styles-tmux.css +49 -49
- package/renderer/styles-workflow-map.css +362 -15
- package/renderer/styles-workflows.css +116 -49
- package/renderer/styles.css +34 -19
- package/renderer/terminal-agent.js +17 -13
- package/renderer/terminal-events.js +253 -37
- package/renderer/terminal-workbench.js +208 -89
- package/renderer/terminal.js +350 -35
- package/src/agentMonitor/claudeParser.js +96 -7
- package/src/agentMonitor/codexParser.js +59 -4
- package/src/agentMonitor/executionActivity.js +282 -0
- package/src/agentMonitor/genericParser.js +56 -13
- package/src/agentMonitor/hierarchy.js +17 -0
- package/src/agentMonitor/responseIntent.js +51 -0
- package/src/agentMonitor.js +21 -3
- package/src/agentRunner.js +66 -1
- package/src/attentionNotifier.js +14 -10
- package/src/automationMonitor.js +258 -0
- package/src/contracts.js +10 -1
- package/src/ipc/registerAgentIpc.js +9 -3
- package/src/ipc/registerAppIpc.js +4 -1
- package/src/ipc/registerTerminalIpc.js +12 -14
- package/src/macUpdateHelper.js +210 -0
- package/src/monitorWorker.js +65 -6
- package/src/platformPath.js +80 -0
- package/src/processMonitor.js +80 -22
- package/src/providerVisibilityStore.js +45 -0
- package/src/sessionIntelligence.js +261 -0
- package/src/terminalHost.js +453 -0
- package/src/terminalHostDaemon.js +61 -0
- package/src/terminalManager.js +218 -6
- package/src/updateInstaller.js +175 -0
package/renderer/styles-tmux.css
CHANGED
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
.tmux-empty small {
|
|
135
135
|
margin-top: 6px;
|
|
136
136
|
color: #596878;
|
|
137
|
-
font-size:
|
|
137
|
+
font-size: 12px;
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
.tmux-distro-group {
|
|
@@ -171,7 +171,7 @@
|
|
|
171
171
|
border-radius: 9px;
|
|
172
172
|
background: #12342d;
|
|
173
173
|
color: #69e6ba;
|
|
174
|
-
font-size:
|
|
174
|
+
font-size: 12px;
|
|
175
175
|
font-weight: 800;
|
|
176
176
|
}
|
|
177
177
|
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
border-radius: 8px;
|
|
192
192
|
background: #10221f;
|
|
193
193
|
color: #76cdb1;
|
|
194
|
-
font-size:
|
|
194
|
+
font-size: 12px;
|
|
195
195
|
}
|
|
196
196
|
|
|
197
197
|
.tmux-distro-line {
|
|
@@ -422,13 +422,13 @@
|
|
|
422
422
|
}
|
|
423
423
|
|
|
424
424
|
.tmux-subagents-toggle b {
|
|
425
|
-
font-size:
|
|
425
|
+
font-size: 12px;
|
|
426
426
|
}
|
|
427
427
|
|
|
428
428
|
.tmux-subagents-toggle small {
|
|
429
429
|
margin-top: 3px;
|
|
430
430
|
color: #718395;
|
|
431
|
-
font-size:
|
|
431
|
+
font-size: 12px;
|
|
432
432
|
}
|
|
433
433
|
|
|
434
434
|
.tmux-subagents-toggle>i {
|
|
@@ -470,7 +470,7 @@
|
|
|
470
470
|
.tmux-subagent-row>.provider-mark {
|
|
471
471
|
width: 27px;
|
|
472
472
|
height: 27px;
|
|
473
|
-
font-size:
|
|
473
|
+
font-size: 12px;
|
|
474
474
|
}
|
|
475
475
|
|
|
476
476
|
.tmux-subagent-copy,
|
|
@@ -494,7 +494,7 @@
|
|
|
494
494
|
|
|
495
495
|
.tmux-subagent-copy b {
|
|
496
496
|
color: #dce6ee;
|
|
497
|
-
font-size:
|
|
497
|
+
font-size: 12px;
|
|
498
498
|
}
|
|
499
499
|
|
|
500
500
|
.tmux-subagent-copy i {
|
|
@@ -502,13 +502,13 @@
|
|
|
502
502
|
border-radius: 999px;
|
|
503
503
|
background: #17262a;
|
|
504
504
|
color: #77dcb9;
|
|
505
|
-
font-size:
|
|
505
|
+
font-size: 12px;
|
|
506
506
|
font-style: normal;
|
|
507
507
|
}
|
|
508
508
|
|
|
509
509
|
.tmux-subagent-copy small {
|
|
510
510
|
color: #647588;
|
|
511
|
-
font-size:
|
|
511
|
+
font-size: 12px;
|
|
512
512
|
}
|
|
513
513
|
|
|
514
514
|
.tmux-subagent-copy strong,
|
|
@@ -519,12 +519,12 @@
|
|
|
519
519
|
|
|
520
520
|
.tmux-subagent-copy strong {
|
|
521
521
|
color: #b9c7d3;
|
|
522
|
-
font-size:
|
|
522
|
+
font-size: 12px;
|
|
523
523
|
}
|
|
524
524
|
|
|
525
525
|
.tmux-subagent-copy em {
|
|
526
526
|
color: #718294;
|
|
527
|
-
font-size:
|
|
527
|
+
font-size: 12px;
|
|
528
528
|
font-style: normal;
|
|
529
529
|
}
|
|
530
530
|
|
|
@@ -535,7 +535,7 @@
|
|
|
535
535
|
border-radius: 7px;
|
|
536
536
|
background: #10211f;
|
|
537
537
|
color: #72deb8;
|
|
538
|
-
font-size:
|
|
538
|
+
font-size: 12px;
|
|
539
539
|
cursor: pointer;
|
|
540
540
|
}
|
|
541
541
|
|
|
@@ -551,7 +551,7 @@
|
|
|
551
551
|
border-radius: 7px;
|
|
552
552
|
background: transparent;
|
|
553
553
|
color: #a9b8c6;
|
|
554
|
-
font-size:
|
|
554
|
+
font-size: 12px;
|
|
555
555
|
cursor: pointer;
|
|
556
556
|
}
|
|
557
557
|
|
|
@@ -613,35 +613,35 @@
|
|
|
613
613
|
.tmux-stats span {
|
|
614
614
|
display: block;
|
|
615
615
|
color: #718093;
|
|
616
|
-
font-size:
|
|
616
|
+
font-size: 12px;
|
|
617
617
|
}
|
|
618
618
|
|
|
619
619
|
.tmux-stats small {
|
|
620
620
|
display: inline;
|
|
621
621
|
margin-left: 5px;
|
|
622
622
|
color: #697789;
|
|
623
|
-
font-size:
|
|
623
|
+
font-size: 12px;
|
|
624
624
|
}
|
|
625
625
|
|
|
626
626
|
.tmux-distro-node small {
|
|
627
627
|
display: block;
|
|
628
628
|
color: #59776f;
|
|
629
629
|
letter-spacing: .13em;
|
|
630
|
-
font-size:
|
|
630
|
+
font-size: 12px;
|
|
631
631
|
}
|
|
632
632
|
|
|
633
633
|
.tmux-session-node small {
|
|
634
634
|
display: block;
|
|
635
635
|
color: #647588;
|
|
636
636
|
letter-spacing: .12em;
|
|
637
|
-
font-size:
|
|
637
|
+
font-size: 12px;
|
|
638
638
|
}
|
|
639
639
|
|
|
640
640
|
.tmux-window-node small {
|
|
641
641
|
display: block;
|
|
642
642
|
color: #647588;
|
|
643
643
|
letter-spacing: .12em;
|
|
644
|
-
font-size:
|
|
644
|
+
font-size: 12px;
|
|
645
645
|
}
|
|
646
646
|
|
|
647
647
|
.tmux-distro-node em {
|
|
@@ -649,21 +649,21 @@
|
|
|
649
649
|
margin-top: 2px;
|
|
650
650
|
color: #758698;
|
|
651
651
|
font-style: normal;
|
|
652
|
-
font-size:
|
|
652
|
+
font-size: 12px;
|
|
653
653
|
}
|
|
654
654
|
|
|
655
655
|
.tmux-session-node span {
|
|
656
656
|
display: block;
|
|
657
657
|
margin-top: 8px;
|
|
658
658
|
color: #7b899a;
|
|
659
|
-
font-size:
|
|
659
|
+
font-size: 12px;
|
|
660
660
|
}
|
|
661
661
|
|
|
662
662
|
.tmux-window-node span {
|
|
663
663
|
display: block;
|
|
664
664
|
margin-top: 7px;
|
|
665
665
|
color: #708093;
|
|
666
|
-
font-size:
|
|
666
|
+
font-size: 12px;
|
|
667
667
|
}
|
|
668
668
|
|
|
669
669
|
.tmux-pane-head b {
|
|
@@ -672,7 +672,7 @@
|
|
|
672
672
|
|
|
673
673
|
.tmux-pane-head span {
|
|
674
674
|
color: #657588;
|
|
675
|
-
font-size:
|
|
675
|
+
font-size: 12px;
|
|
676
676
|
}
|
|
677
677
|
|
|
678
678
|
.tmux-pane-head i {
|
|
@@ -682,7 +682,7 @@
|
|
|
682
682
|
background: #19232d;
|
|
683
683
|
color: #8392a3;
|
|
684
684
|
font-style: normal;
|
|
685
|
-
font-size:
|
|
685
|
+
font-size: 12px;
|
|
686
686
|
}
|
|
687
687
|
|
|
688
688
|
.tmux-pane-cwd {
|
|
@@ -692,13 +692,13 @@
|
|
|
692
692
|
color: #6e7e91;
|
|
693
693
|
text-overflow: ellipsis;
|
|
694
694
|
white-space: nowrap;
|
|
695
|
-
font-size:
|
|
695
|
+
font-size: 12px;
|
|
696
696
|
}
|
|
697
697
|
|
|
698
698
|
.tmux-agent-block small {
|
|
699
699
|
display: block;
|
|
700
700
|
color: var(--provider);
|
|
701
|
-
font-size:
|
|
701
|
+
font-size: 12px;
|
|
702
702
|
}
|
|
703
703
|
|
|
704
704
|
.tmux-agent-block em {
|
|
@@ -709,13 +709,13 @@
|
|
|
709
709
|
font-style: normal;
|
|
710
710
|
text-overflow: ellipsis;
|
|
711
711
|
white-space: nowrap;
|
|
712
|
-
font-size:
|
|
712
|
+
font-size: 12px;
|
|
713
713
|
}
|
|
714
714
|
|
|
715
715
|
.tmux-agent-metrics small {
|
|
716
716
|
display: block;
|
|
717
717
|
color: #647487;
|
|
718
|
-
font-size:
|
|
718
|
+
font-size: 12px;
|
|
719
719
|
}
|
|
720
720
|
|
|
721
721
|
.tmux-shell-note {
|
|
@@ -725,7 +725,7 @@
|
|
|
725
725
|
border: 1px dashed #25333f;
|
|
726
726
|
border-radius: 9px;
|
|
727
727
|
color: #66778a;
|
|
728
|
-
font-size:
|
|
728
|
+
font-size: 12px;
|
|
729
729
|
}
|
|
730
730
|
|
|
731
731
|
.terminal-tmux-group>header {
|
|
@@ -735,12 +735,12 @@
|
|
|
735
735
|
gap: 7px;
|
|
736
736
|
padding: 7px 8px;
|
|
737
737
|
color: #718395;
|
|
738
|
-
font-size:
|
|
738
|
+
font-size: 12px;
|
|
739
739
|
}
|
|
740
740
|
|
|
741
741
|
.terminal-tmux-group>header b {
|
|
742
742
|
color: #86daba;
|
|
743
|
-
font-size:
|
|
743
|
+
font-size: 12px;
|
|
744
744
|
}
|
|
745
745
|
|
|
746
746
|
.terminal-tmux-session strong {
|
|
@@ -750,12 +750,12 @@
|
|
|
750
750
|
color: #aab8c5;
|
|
751
751
|
text-overflow: ellipsis;
|
|
752
752
|
white-space: nowrap;
|
|
753
|
-
font-size:
|
|
753
|
+
font-size: 12px;
|
|
754
754
|
}
|
|
755
755
|
|
|
756
756
|
.terminal-tmux-session small {
|
|
757
757
|
color: #566a70;
|
|
758
|
-
font-size:
|
|
758
|
+
font-size: 12px;
|
|
759
759
|
}
|
|
760
760
|
|
|
761
761
|
.terminal-tmux-pane b {
|
|
@@ -773,7 +773,7 @@
|
|
|
773
773
|
white-space: nowrap;
|
|
774
774
|
margin-top: 4px;
|
|
775
775
|
color: #68798b;
|
|
776
|
-
font-size:
|
|
776
|
+
font-size: 12px;
|
|
777
777
|
}
|
|
778
778
|
|
|
779
779
|
.terminal-tmux-pane>i {
|
|
@@ -784,7 +784,7 @@
|
|
|
784
784
|
color: #68788a;
|
|
785
785
|
font-style: normal;
|
|
786
786
|
text-align: center;
|
|
787
|
-
font-size:
|
|
787
|
+
font-size: 12px;
|
|
788
788
|
}
|
|
789
789
|
|
|
790
790
|
.terminal-tmux-tools label {
|
|
@@ -792,7 +792,7 @@
|
|
|
792
792
|
align-items: center;
|
|
793
793
|
gap: 6px;
|
|
794
794
|
color: #68798b;
|
|
795
|
-
font-size:
|
|
795
|
+
font-size: 12px;
|
|
796
796
|
}
|
|
797
797
|
|
|
798
798
|
.terminal-tmux-tools select {
|
|
@@ -802,7 +802,7 @@
|
|
|
802
802
|
border-radius: 8px;
|
|
803
803
|
background: #101821;
|
|
804
804
|
color: #b3c0ca;
|
|
805
|
-
font-size:
|
|
805
|
+
font-size: 12px;
|
|
806
806
|
}
|
|
807
807
|
|
|
808
808
|
.nav-group-label.tmux-only {
|
|
@@ -874,7 +874,7 @@
|
|
|
874
874
|
border-top: 1px solid #1c2731;
|
|
875
875
|
background: rgba(5,9,13,.5);
|
|
876
876
|
color: #6f7f91;
|
|
877
|
-
font-size:
|
|
877
|
+
font-size: 12px;
|
|
878
878
|
height: auto;
|
|
879
879
|
min-height: 42px;
|
|
880
880
|
padding: 5px 14px;
|
|
@@ -977,7 +977,7 @@
|
|
|
977
977
|
border-radius: 9px;
|
|
978
978
|
background: #153d31;
|
|
979
979
|
color: #82e8c2;
|
|
980
|
-
font-size:
|
|
980
|
+
font-size: 12px;
|
|
981
981
|
font-weight: 750;
|
|
982
982
|
cursor: pointer;
|
|
983
983
|
}
|
|
@@ -1042,7 +1042,7 @@
|
|
|
1042
1042
|
text-overflow: ellipsis;
|
|
1043
1043
|
white-space: nowrap;
|
|
1044
1044
|
color: #5ccfa8;
|
|
1045
|
-
font-size:
|
|
1045
|
+
font-size: 12px;
|
|
1046
1046
|
letter-spacing: .1em;
|
|
1047
1047
|
}
|
|
1048
1048
|
|
|
@@ -1061,7 +1061,7 @@
|
|
|
1061
1061
|
border-radius: 7px;
|
|
1062
1062
|
background: #12352d;
|
|
1063
1063
|
color: #69dcb6;
|
|
1064
|
-
font-size:
|
|
1064
|
+
font-size: 12px;
|
|
1065
1065
|
font-style: normal;
|
|
1066
1066
|
white-space: nowrap;
|
|
1067
1067
|
}
|
|
@@ -1103,19 +1103,19 @@
|
|
|
1103
1103
|
border-radius: 5px;
|
|
1104
1104
|
background: color-mix(in srgb,var(--provider) 12%,#17222b);
|
|
1105
1105
|
color: var(--provider);
|
|
1106
|
-
font-size:
|
|
1106
|
+
font-size: 12px;
|
|
1107
1107
|
font-style: normal;
|
|
1108
1108
|
font-weight: 800;
|
|
1109
1109
|
}
|
|
1110
1110
|
|
|
1111
1111
|
.live-tmux-agent b {
|
|
1112
1112
|
color: #b8c7ce;
|
|
1113
|
-
font-size:
|
|
1113
|
+
font-size: 12px;
|
|
1114
1114
|
}
|
|
1115
1115
|
|
|
1116
1116
|
.live-tmux-agent small {
|
|
1117
1117
|
color: #647687;
|
|
1118
|
-
font-size:
|
|
1118
|
+
font-size: 12px;
|
|
1119
1119
|
}
|
|
1120
1120
|
|
|
1121
1121
|
.live-tmux-location {
|
|
@@ -1125,7 +1125,7 @@
|
|
|
1125
1125
|
margin-top: 10px;
|
|
1126
1126
|
overflow: hidden;
|
|
1127
1127
|
color: #798b99;
|
|
1128
|
-
font-size:
|
|
1128
|
+
font-size: 12px;
|
|
1129
1129
|
white-space: nowrap;
|
|
1130
1130
|
}
|
|
1131
1131
|
|
|
@@ -1149,7 +1149,7 @@
|
|
|
1149
1149
|
overflow: hidden;
|
|
1150
1150
|
color: #5b6d7e;
|
|
1151
1151
|
font-family: "Cascadia Code",Consolas,monospace;
|
|
1152
|
-
font-size:
|
|
1152
|
+
font-size: 12px;
|
|
1153
1153
|
text-overflow: ellipsis;
|
|
1154
1154
|
white-space: nowrap;
|
|
1155
1155
|
}
|
|
@@ -1167,7 +1167,7 @@
|
|
|
1167
1167
|
|
|
1168
1168
|
.live-tmux-card footer>span:first-child {
|
|
1169
1169
|
color: #638074;
|
|
1170
|
-
font-size:
|
|
1170
|
+
font-size: 12px;
|
|
1171
1171
|
}
|
|
1172
1172
|
|
|
1173
1173
|
.live-tmux-card footer>span:last-child {
|
|
@@ -1182,7 +1182,7 @@
|
|
|
1182
1182
|
border-radius: 7px;
|
|
1183
1183
|
background: transparent;
|
|
1184
1184
|
color: #77d9b5;
|
|
1185
|
-
font-size:
|
|
1185
|
+
font-size: 12px;
|
|
1186
1186
|
cursor: pointer;
|
|
1187
1187
|
}
|
|
1188
1188
|
|
|
@@ -1222,7 +1222,7 @@
|
|
|
1222
1222
|
border-radius: 10px;
|
|
1223
1223
|
background: #101c1d;
|
|
1224
1224
|
color: #a8cabe;
|
|
1225
|
-
font-size:
|
|
1225
|
+
font-size: 12px;
|
|
1226
1226
|
font-weight: 650;
|
|
1227
1227
|
cursor: pointer;
|
|
1228
1228
|
transition: transform var(--motion-fast) var(--motion-ease),background-color var(--motion-fast) ease,border-color var(--motion-fast) ease,color var(--motion-fast) ease,box-shadow var(--motion-medium) ease,opacity var(--motion-fast) ease;
|
|
@@ -1237,7 +1237,7 @@
|
|
|
1237
1237
|
color: #aebbc8;
|
|
1238
1238
|
font-weight: 650;
|
|
1239
1239
|
cursor: pointer;
|
|
1240
|
-
font-size:
|
|
1240
|
+
font-size: 12px;
|
|
1241
1241
|
transition: transform var(--motion-fast) var(--motion-ease),background-color var(--motion-fast) ease,border-color var(--motion-fast) ease,color var(--motion-fast) ease,box-shadow var(--motion-medium) ease,opacity var(--motion-fast) ease;
|
|
1242
1242
|
}
|
|
1243
1243
|
|