@quanta-intellect/vessel-browser 0.1.128 → 0.1.132
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.
|
@@ -711,119 +711,44 @@
|
|
|
711
711
|
opacity: 0.8;
|
|
712
712
|
}
|
|
713
713
|
|
|
714
|
-
.
|
|
714
|
+
.page-diff-trigger {
|
|
715
715
|
display: flex;
|
|
716
716
|
align-items: center;
|
|
717
717
|
gap: 6px;
|
|
718
718
|
height: 30px;
|
|
719
|
-
padding: 0
|
|
719
|
+
padding: 0 10px;
|
|
720
720
|
min-width: 0;
|
|
721
|
-
max-width: min(
|
|
721
|
+
max-width: min(160px, 18vw);
|
|
722
722
|
border-left: 1px solid var(--border-glass);
|
|
723
723
|
border-radius: 0;
|
|
724
|
-
background: transparent;
|
|
725
|
-
color: var(--text-
|
|
726
|
-
font-size:
|
|
724
|
+
background: color-mix(in srgb, var(--status-warning) 3%, transparent);
|
|
725
|
+
color: var(--text-secondary);
|
|
726
|
+
font-size: 11px;
|
|
727
727
|
font-weight: 500;
|
|
728
728
|
letter-spacing: 0.02em;
|
|
729
729
|
white-space: nowrap;
|
|
730
730
|
flex-shrink: 0;
|
|
731
|
+
cursor: pointer;
|
|
731
732
|
transition:
|
|
732
733
|
border-color var(--duration-normal) var(--ease-in-out),
|
|
733
734
|
background var(--duration-normal) var(--ease-in-out),
|
|
734
735
|
color var(--duration-slow) var(--ease-in-out);
|
|
736
|
+
border-left-color: color-mix(in srgb, var(--status-warning) 14%, transparent);
|
|
735
737
|
}
|
|
736
738
|
|
|
737
|
-
.
|
|
739
|
+
.page-diff-trigger-text {
|
|
738
740
|
overflow: hidden;
|
|
739
741
|
text-overflow: ellipsis;
|
|
740
742
|
white-space: nowrap;
|
|
741
743
|
min-width: 0;
|
|
742
744
|
}
|
|
743
745
|
|
|
744
|
-
.
|
|
745
|
-
width: 18px;
|
|
746
|
-
height: 18px;
|
|
747
|
-
display: flex;
|
|
748
|
-
align-items: center;
|
|
749
|
-
justify-content: center;
|
|
750
|
-
flex-shrink: 0;
|
|
751
|
-
border-radius: var(--radius-sm);
|
|
752
|
-
color: var(--text-muted);
|
|
753
|
-
opacity: 0.72;
|
|
754
|
-
transition:
|
|
755
|
-
background var(--duration-fast) var(--ease-in-out),
|
|
756
|
-
color var(--duration-fast) var(--ease-in-out),
|
|
757
|
-
opacity var(--duration-fast) var(--ease-in-out);
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
.agent-status-dismiss:hover {
|
|
761
|
-
background: color-mix(in srgb, var(--text-primary) 10%, transparent);
|
|
762
|
-
color: var(--text-primary);
|
|
763
|
-
opacity: 1;
|
|
764
|
-
}
|
|
765
|
-
|
|
766
|
-
/* Active — green: agent is actively using tools */
|
|
767
|
-
.agent-status-badge.active {
|
|
768
|
-
border-left-color: color-mix(in srgb, var(--status-info) 18%, transparent);
|
|
769
|
-
background: color-mix(in srgb, var(--status-info) 5%, transparent);
|
|
770
|
-
color: var(--text-primary);
|
|
771
|
-
}
|
|
772
|
-
|
|
773
|
-
.agent-status-badge.active .agent-status-text {
|
|
774
|
-
background: linear-gradient(
|
|
775
|
-
90deg,
|
|
776
|
-
var(--text-primary) 0%,
|
|
777
|
-
var(--text-primary) 40%,
|
|
778
|
-
var(--status-info) 50%,
|
|
779
|
-
var(--text-primary) 60%,
|
|
780
|
-
var(--text-primary) 100%
|
|
781
|
-
);
|
|
782
|
-
background-size: 200% 100%;
|
|
783
|
-
-webkit-background-clip: text;
|
|
784
|
-
background-clip: text;
|
|
785
|
-
-webkit-text-fill-color: transparent;
|
|
786
|
-
animation: status-shimmer 3s ease-in-out infinite;
|
|
787
|
-
}
|
|
788
|
-
|
|
789
|
-
@keyframes status-shimmer {
|
|
790
|
-
0% { background-position: 100% 0; }
|
|
791
|
-
100% { background-position: -100% 0; }
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
/* Recent — amber/yellow: MCP connected or recently active */
|
|
795
|
-
.agent-status-badge.recent {
|
|
796
|
-
border-left-color: color-mix(in srgb, var(--status-warning) 14%, transparent);
|
|
797
|
-
background: color-mix(in srgb, var(--status-warning) 3%, transparent);
|
|
798
|
-
color: var(--text-secondary);
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
/* Idle — gray: no connection */
|
|
802
|
-
.agent-status-badge.idle {
|
|
803
|
-
border-left-color: color-mix(in srgb, var(--text-muted) 10%, transparent);
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
.agent-status-dot {
|
|
746
|
+
.page-diff-trigger-dot {
|
|
807
747
|
width: 6px;
|
|
808
748
|
height: 6px;
|
|
809
749
|
border-radius: 999px;
|
|
810
|
-
background:
|
|
750
|
+
background: var(--status-warning-amber);
|
|
811
751
|
flex-shrink: 0;
|
|
812
|
-
transition:
|
|
813
|
-
background var(--duration-slow) var(--ease-in-out),
|
|
814
|
-
box-shadow var(--duration-slow) var(--ease-in-out);
|
|
815
|
-
}
|
|
816
|
-
|
|
817
|
-
/* Green pulsing dot for active */
|
|
818
|
-
.agent-status-badge.active .agent-status-dot {
|
|
819
|
-
background: var(--status-info);
|
|
820
|
-
box-shadow: 0 0 0 0 color-mix(in srgb, var(--status-info) 32%, transparent);
|
|
821
|
-
animation: agent-status-pulse-green 1.8s ease-out infinite;
|
|
822
|
-
}
|
|
823
|
-
|
|
824
|
-
/* Steady amber dot for recent/connected */
|
|
825
|
-
.agent-status-badge.recent .agent-status-dot {
|
|
826
|
-
background: var(--status-warning);
|
|
827
752
|
}
|
|
828
753
|
|
|
829
754
|
.toolbar-actions {
|
|
@@ -1226,49 +1151,6 @@
|
|
|
1226
1151
|
Agent transcript dock — floating panel
|
|
1227
1152
|
═══════════════════════════════════════ */
|
|
1228
1153
|
|
|
1229
|
-
.agent-summary-hud {
|
|
1230
|
-
position: absolute;
|
|
1231
|
-
right: 14px;
|
|
1232
|
-
bottom: 14px;
|
|
1233
|
-
z-index: 40;
|
|
1234
|
-
display: flex;
|
|
1235
|
-
align-items: center;
|
|
1236
|
-
gap: 8px;
|
|
1237
|
-
padding: 8px 14px;
|
|
1238
|
-
border: 1px solid color-mix(in srgb, var(--accent-primary) 14%, transparent);
|
|
1239
|
-
border-radius: var(--radius-lg);
|
|
1240
|
-
background: linear-gradient(
|
|
1241
|
-
180deg,
|
|
1242
|
-
var(--glass-gradient-start),
|
|
1243
|
-
var(--glass-gradient-end)
|
|
1244
|
-
);
|
|
1245
|
-
box-shadow:
|
|
1246
|
-
0 2px 8px var(--shadow-color),
|
|
1247
|
-
0 8px 24px var(--shadow-color);
|
|
1248
|
-
backdrop-filter: blur(16px);
|
|
1249
|
-
animation: toast-enter var(--duration-enter) var(--ease-out-expo) both;
|
|
1250
|
-
max-width: min(420px, calc(100vw - 28px));
|
|
1251
|
-
}
|
|
1252
|
-
|
|
1253
|
-
.agent-summary-live-dot {
|
|
1254
|
-
width: 6px;
|
|
1255
|
-
height: 6px;
|
|
1256
|
-
border-radius: 50%;
|
|
1257
|
-
background: var(--accent-primary);
|
|
1258
|
-
box-shadow: 0 0 6px color-mix(in srgb, var(--accent-primary) 50%, transparent);
|
|
1259
|
-
animation: agent-transcript-live-pulse 2s ease-in-out infinite;
|
|
1260
|
-
flex-shrink: 0;
|
|
1261
|
-
}
|
|
1262
|
-
|
|
1263
|
-
.agent-summary-text {
|
|
1264
|
-
color: var(--text-secondary);
|
|
1265
|
-
font-size: 11.5px;
|
|
1266
|
-
line-height: 1.45;
|
|
1267
|
-
overflow: hidden;
|
|
1268
|
-
text-overflow: ellipsis;
|
|
1269
|
-
white-space: nowrap;
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
1154
|
.agent-transcript-dock {
|
|
1273
1155
|
position: absolute;
|
|
1274
1156
|
right: 14px;
|
package/out/renderer/index.html
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; base-uri 'none'; object-src 'none'; frame-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self'; font-src 'self' data:; form-action 'self';" />
|
|
7
7
|
<title>Vessel</title>
|
|
8
|
-
<script type="module" crossorigin src="./assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
8
|
+
<script type="module" crossorigin src="./assets/index-BjtfG1IG.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="./assets/index-CWy6khUL.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quanta-intellect/vessel-browser",
|
|
3
3
|
"mcpName": "io.github.unmodeled-tyler/vessel-browser",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.132",
|
|
5
5
|
"description": "AI-native web browser runtime for autonomous agents with human supervision",
|
|
6
6
|
"main": "./out/main/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"test:navigation-regression": "env -u ELECTRON_RUN_AS_NODE ELECTRON_DISABLE_SANDBOX=1 electron --no-sandbox --disable-setuid-sandbox scripts/run-navigation-regression.mjs",
|
|
50
50
|
"test:mcp-proxy": "node scripts/test-mcp-stdio-proxy.mjs",
|
|
51
51
|
"smoke:test": "node scripts/smoke-test.mjs",
|
|
52
|
-
"test:coverage": "c8 --reporter=text --reporter=html tsx --test tests/*.test.ts"
|
|
52
|
+
"test:coverage": "NODE_OPTIONS=\"--require ./tests/mocks/register.cjs --import ./tests/mocks/esm-register.mjs\" c8 --reporter=text --reporter=html tsx --test tests/*.test.ts"
|
|
53
53
|
},
|
|
54
54
|
"keywords": [
|
|
55
55
|
"agent-browser",
|