@quanta-intellect/vessel-browser 0.1.35 → 0.1.45
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 +27 -2
- package/out/main/index.js +2178 -347
- package/out/preload/content-script.js +27 -2
- package/out/renderer/assets/{index-IYqP5OYH.js → index-BC3sJqLj.js} +170 -135
- package/out/renderer/index.html +1 -1
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -90,7 +90,7 @@ Today, Vessel provides the browser shell, page visibility, and supervisory surfa
|
|
|
90
90
|
- **Human-visible browser UI** — pages render like a normal browser so agent activity stays legible instead of disappearing into a headless run
|
|
91
91
|
- **Command Bar** (`Ctrl+L`) — a secondary operator surface for harness-driven workflows and future runtime commands
|
|
92
92
|
- **Supervisor Sidebar** (`Ctrl+Shift+L`) — live supervision across five tabs: Supervisor, Bookmarks, Checkpoints, Chat, and Automate
|
|
93
|
-
- **Chat Assistant** — built-in conversational AI in the sidebar Chat tab; supports Anthropic, OpenAI, Ollama, Mistral, xAI, Google Gemini, OpenRouter, and any OpenAI-compatible endpoint; reads the current page automatically; has full access to the same browser tools as external agents; multi-turn session history; configure provider, model, and API key in Settings
|
|
93
|
+
- **Chat Assistant** — built-in conversational AI in the sidebar Chat tab; supports Anthropic, OpenAI, Ollama, llama.cpp, Mistral, xAI, Google Gemini, OpenRouter, and any OpenAI-compatible endpoint; reads the current page automatically; has full access to the same browser tools as external agents; multi-turn session history; configure provider, model, and API key in Settings
|
|
94
94
|
- **Automation Kits** (Premium) — parameterized workflow templates in the sidebar Automate tab; fill in a short form and the built-in agent executes the workflow autonomously; bundled kits include Research & Collect (multi-source research with bookmark saving) and Price Scout (cross-retailer price comparison); designed for a future kit marketplace
|
|
95
95
|
- **Dev Tools Panel** (`F12`) — inspect console output, network requests, and MCP/agent activity in a resizable panel at the bottom of the window; export logs by category and date range as JSON
|
|
96
96
|
- **Bookmarks for Agents** — save pages into folders, attach one-line folder summaries, and search bookmarks over MCP instead of dumping the entire library
|
|
@@ -130,7 +130,7 @@ That means the product should optimize for:
|
|
|
130
130
|
| UI Framework | SolidJS |
|
|
131
131
|
| Language | TypeScript |
|
|
132
132
|
| Build | electron-vite + Vite |
|
|
133
|
-
| AI Control | External agent harnesses (Hermes Agent, OpenClaw, MCP clients) + built-in chat (Anthropic, OpenAI, Ollama, and any OAI-compatible endpoint) |
|
|
133
|
+
| AI Control | External agent harnesses (Hermes Agent, OpenClaw, MCP clients) + built-in chat (Anthropic, OpenAI, Ollama, llama.cpp, and any OAI-compatible endpoint) |
|
|
134
134
|
| Content Extraction | @mozilla/readability |
|
|
135
135
|
|
|
136
136
|
## Architecture
|
|
@@ -239,6 +239,8 @@ Notes:
|
|
|
239
239
|
- The default MCP port is `3100`
|
|
240
240
|
- Hermes Agent and OpenClaw should treat Vessel as the persistent, human-visible browser rather than launching their own separate browser session
|
|
241
241
|
- Vessel supports a built-in Chat tab with configurable AI provider; open Settings (`Ctrl+,`) and enable Chat Assistant to set a provider and model
|
|
242
|
+
- `llama.cpp (Local)` is a first-class chat provider in Settings and targets `http://localhost:8080/v1` by default; Vessel auto-fetches the active model from `llama-server`
|
|
243
|
+
- For `llama-server`, use `--ctx-size 16384` minimum and `32768` recommended for reliable Vessel agent loops; lower values often fail once prompt, tool schema, and tool history accumulate
|
|
242
244
|
- Approval policy is controlled live from the sidebar Supervisor panel rather than a separate global settings screen
|
|
243
245
|
- Settings now show MCP runtime status, active endpoint, startup warnings, and allow changing the MCP port with an immediate server restart
|
|
244
246
|
- Agents can selectively disable ad blocking for a problematic tab, reload, retry the flow, and turn blocking back on later
|
|
@@ -246,6 +248,29 @@ Notes:
|
|
|
246
248
|
- The intended control plane is an external harness driving Vessel through MCP
|
|
247
249
|
- If you set an Obsidian vault path in Settings, harnesses can write markdown notes directly into that vault via Vessel memory MCP tools
|
|
248
250
|
|
|
251
|
+
### Using llama.cpp as the built-in chat provider
|
|
252
|
+
|
|
253
|
+
Vessel can talk directly to a local `llama-server` through its OpenAI-compatible API.
|
|
254
|
+
|
|
255
|
+
Example:
|
|
256
|
+
|
|
257
|
+
```bash
|
|
258
|
+
llama-server -m /path/to/model.gguf --port 8080 --ctx-size 32768
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
Then in Vessel:
|
|
262
|
+
|
|
263
|
+
1. Open Settings (`Ctrl+,`)
|
|
264
|
+
2. Enable Chat Assistant
|
|
265
|
+
3. Choose `llama.cpp (Local)` as the provider
|
|
266
|
+
4. Click refresh if needed; Vessel will auto-detect the active model from `http://localhost:8080/v1`
|
|
267
|
+
|
|
268
|
+
Notes:
|
|
269
|
+
|
|
270
|
+
- `--ctx-size 16384` is the minimum practical setting for Vessel agent loops
|
|
271
|
+
- `--ctx-size 32768` is the recommended default for longer browsing sessions
|
|
272
|
+
- Vessel will warn in Settings if it detects a `llama-server` context size below the recommended floor, or if it cannot detect the ctx size from the running server
|
|
273
|
+
|
|
249
274
|
Initial memory tools:
|
|
250
275
|
|
|
251
276
|
- `vessel_memory_note_create`
|