@quanta-intellect/vessel-browser 0.1.65 → 0.1.68
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 +12 -7
- package/out/main/index.js +393 -75
- package/out/preload/index.js +17 -2
- package/out/renderer/assets/{index-BQjjFSb1.js → index-BCEB2epC.js} +745 -406
- package/out/renderer/assets/{index-4OgPv5GF.css → index-B_C8ayic.css} +13 -0
- package/out/renderer/index.html +2 -2
- package/package.json +1 -1
|
@@ -2285,6 +2285,15 @@
|
|
|
2285
2285
|
color: var(--text-secondary);
|
|
2286
2286
|
}
|
|
2287
2287
|
|
|
2288
|
+
.bookmark-item .bookmark-folder-edit {
|
|
2289
|
+
flex-direction: column;
|
|
2290
|
+
align-items: stretch;
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
.bookmark-item .bookmark-item-footer {
|
|
2294
|
+
flex-wrap: wrap;
|
|
2295
|
+
}
|
|
2296
|
+
|
|
2288
2297
|
|
|
2289
2298
|
/* ═══════════════════════════════════════
|
|
2290
2299
|
Agent supervisor panel
|
|
@@ -2361,6 +2370,10 @@
|
|
|
2361
2370
|
align-items: stretch;
|
|
2362
2371
|
}
|
|
2363
2372
|
|
|
2373
|
+
.agent-checkpoint-row {
|
|
2374
|
+
flex-direction: column;
|
|
2375
|
+
}
|
|
2376
|
+
|
|
2364
2377
|
.agent-section-header {
|
|
2365
2378
|
align-items: center;
|
|
2366
2379
|
}
|
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'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; connect-src 'self'; font-src 'self' data:;" />
|
|
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-BCEB2epC.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="./assets/index-B_C8ayic.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.68",
|
|
5
5
|
"description": "AI-native web browser runtime for autonomous agents with human supervision",
|
|
6
6
|
"main": "./out/main/index.js",
|
|
7
7
|
"bin": {
|