@quanta-intellect/vessel-browser 0.1.9 → 0.1.11
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.md +4 -0
- package/out/main/index.js +1273 -458
- package/out/preload/content-script.js +76 -8
- package/out/renderer/assets/{index-CCVxW0YM.js → index-BUYEjb3N.js} +245 -101
- package/out/renderer/assets/{index-Cud0VqFQ.css → index-DOCQcMR5.css} +172 -0
- package/out/renderer/index.html +2 -2
- package/package.json +2 -1
|
@@ -2187,6 +2187,178 @@
|
|
|
2187
2187
|
margin: 14px 0;
|
|
2188
2188
|
}
|
|
2189
2189
|
|
|
2190
|
+
.markdown-content table {
|
|
2191
|
+
width: 100%;
|
|
2192
|
+
border-collapse: collapse;
|
|
2193
|
+
margin: 0 0 10px;
|
|
2194
|
+
font-size: 12.5px;
|
|
2195
|
+
line-height: 1.5;
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
.markdown-content thead {
|
|
2199
|
+
border-bottom: 2px solid rgba(255, 255, 255, 0.12);
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
.markdown-content th {
|
|
2203
|
+
text-align: left;
|
|
2204
|
+
font-weight: 600;
|
|
2205
|
+
color: var(--text-primary);
|
|
2206
|
+
padding: 6px 10px;
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2209
|
+
.markdown-content td {
|
|
2210
|
+
padding: 5px 10px;
|
|
2211
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
2212
|
+
color: var(--text-secondary);
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
.markdown-content tbody tr:hover {
|
|
2216
|
+
background: rgba(255, 255, 255, 0.03);
|
|
2217
|
+
}
|
|
2218
|
+
|
|
2219
|
+
|
|
2220
|
+
/* ═══════════════════════════════════════
|
|
2221
|
+
Tool call action chips
|
|
2222
|
+
═══════════════════════════════════════ */
|
|
2223
|
+
|
|
2224
|
+
.tool-chip {
|
|
2225
|
+
display: flex;
|
|
2226
|
+
align-items: center;
|
|
2227
|
+
gap: 6px;
|
|
2228
|
+
padding: 3px 10px 3px 7px;
|
|
2229
|
+
margin: 3px 0;
|
|
2230
|
+
background: rgba(255, 255, 255, 0.04);
|
|
2231
|
+
border-left: 2px solid rgba(196, 160, 90, 0.4);
|
|
2232
|
+
border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
|
|
2233
|
+
font-size: 11.5px;
|
|
2234
|
+
line-height: 1.5;
|
|
2235
|
+
color: var(--text-muted);
|
|
2236
|
+
font-family: var(--font-mono);
|
|
2237
|
+
transition: background var(--duration-fast) var(--ease-in-out);
|
|
2238
|
+
}
|
|
2239
|
+
|
|
2240
|
+
.tool-chip:hover {
|
|
2241
|
+
background: rgba(255, 255, 255, 0.07);
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
.tool-chip-icon {
|
|
2245
|
+
flex-shrink: 0;
|
|
2246
|
+
width: 16px;
|
|
2247
|
+
text-align: center;
|
|
2248
|
+
font-size: 12px;
|
|
2249
|
+
color: rgba(196, 160, 90, 0.7);
|
|
2250
|
+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
2251
|
+
}
|
|
2252
|
+
|
|
2253
|
+
.tool-chip-name {
|
|
2254
|
+
color: var(--text-secondary);
|
|
2255
|
+
font-weight: 500;
|
|
2256
|
+
letter-spacing: 0.01em;
|
|
2257
|
+
}
|
|
2258
|
+
|
|
2259
|
+
.tool-chip-args {
|
|
2260
|
+
color: var(--text-muted);
|
|
2261
|
+
opacity: 0.7;
|
|
2262
|
+
font-weight: 400;
|
|
2263
|
+
max-width: 200px;
|
|
2264
|
+
overflow: hidden;
|
|
2265
|
+
text-overflow: ellipsis;
|
|
2266
|
+
white-space: nowrap;
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2269
|
+
.tool-chip-args::before {
|
|
2270
|
+
content: "·";
|
|
2271
|
+
margin-right: 5px;
|
|
2272
|
+
opacity: 0.4;
|
|
2273
|
+
}
|
|
2274
|
+
|
|
2275
|
+
|
|
2276
|
+
/* ═══════════════════════════════════════
|
|
2277
|
+
Inline approval prompts (chat tab)
|
|
2278
|
+
═══════════════════════════════════════ */
|
|
2279
|
+
|
|
2280
|
+
.chat-approval {
|
|
2281
|
+
display: flex;
|
|
2282
|
+
gap: 10px;
|
|
2283
|
+
margin: 8px 14px;
|
|
2284
|
+
padding: 10px 12px;
|
|
2285
|
+
background: rgba(224, 180, 80, 0.08);
|
|
2286
|
+
border: 1px solid rgba(224, 180, 80, 0.2);
|
|
2287
|
+
border-radius: var(--radius-md);
|
|
2288
|
+
animation: approval-appear 0.25s var(--ease-out-back);
|
|
2289
|
+
}
|
|
2290
|
+
|
|
2291
|
+
@keyframes approval-appear {
|
|
2292
|
+
from { opacity: 0; transform: translateY(6px); }
|
|
2293
|
+
to { opacity: 1; transform: translateY(0); }
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
.chat-approval-icon {
|
|
2297
|
+
flex-shrink: 0;
|
|
2298
|
+
color: #e0b450;
|
|
2299
|
+
margin-top: 1px;
|
|
2300
|
+
}
|
|
2301
|
+
|
|
2302
|
+
.chat-approval-body {
|
|
2303
|
+
flex: 1;
|
|
2304
|
+
min-width: 0;
|
|
2305
|
+
}
|
|
2306
|
+
|
|
2307
|
+
.chat-approval-title {
|
|
2308
|
+
font-size: 12.5px;
|
|
2309
|
+
color: var(--text-primary);
|
|
2310
|
+
margin-bottom: 2px;
|
|
2311
|
+
}
|
|
2312
|
+
|
|
2313
|
+
.chat-approval-detail {
|
|
2314
|
+
font-size: 11.5px;
|
|
2315
|
+
color: var(--text-muted);
|
|
2316
|
+
overflow: hidden;
|
|
2317
|
+
text-overflow: ellipsis;
|
|
2318
|
+
white-space: nowrap;
|
|
2319
|
+
}
|
|
2320
|
+
|
|
2321
|
+
.chat-approval-actions {
|
|
2322
|
+
display: flex;
|
|
2323
|
+
gap: 6px;
|
|
2324
|
+
margin-top: 8px;
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
.chat-approval-btn {
|
|
2328
|
+
font-size: 11.5px;
|
|
2329
|
+
padding: 4px 14px;
|
|
2330
|
+
border-radius: var(--radius-sm);
|
|
2331
|
+
border: none;
|
|
2332
|
+
cursor: pointer;
|
|
2333
|
+
font-weight: 500;
|
|
2334
|
+
transition:
|
|
2335
|
+
background var(--duration-fast) var(--ease-in-out),
|
|
2336
|
+
transform var(--duration-fast) var(--ease-out-back);
|
|
2337
|
+
}
|
|
2338
|
+
|
|
2339
|
+
.chat-approval-btn:active {
|
|
2340
|
+
transform: scale(0.95);
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
.chat-approval-approve {
|
|
2344
|
+
background: rgba(224, 180, 80, 0.18);
|
|
2345
|
+
color: #e0c070;
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
.chat-approval-approve:hover {
|
|
2349
|
+
background: rgba(224, 180, 80, 0.28);
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2352
|
+
.chat-approval-reject {
|
|
2353
|
+
background: rgba(255, 255, 255, 0.06);
|
|
2354
|
+
color: var(--text-muted);
|
|
2355
|
+
}
|
|
2356
|
+
|
|
2357
|
+
.chat-approval-reject:hover {
|
|
2358
|
+
background: rgba(255, 255, 255, 0.1);
|
|
2359
|
+
color: var(--text-secondary);
|
|
2360
|
+
}
|
|
2361
|
+
|
|
2190
2362
|
|
|
2191
2363
|
/* ═══════════════════════════════════════
|
|
2192
2364
|
Thinking & streaming states
|
package/out/renderer/index.html
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Vessel</title>
|
|
7
|
-
<script type="module" crossorigin src="./assets/index-
|
|
8
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
7
|
+
<script type="module" crossorigin src="./assets/index-BUYEjb3N.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="./assets/index-DOCQcMR5.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
|
11
11
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quanta-intellect/vessel-browser",
|
|
3
|
-
"
|
|
3
|
+
"mcpName": "io.github.unmodeled-tyler/vessel-browser",
|
|
4
|
+
"version": "0.1.11",
|
|
4
5
|
"description": "AI-native web browser for Linux — persistent browser runtime for autonomous agents with human supervision",
|
|
5
6
|
"main": "./out/main/index.js",
|
|
6
7
|
"bin": {
|