@quanta-intellect/vessel-browser 0.1.137 → 0.1.138
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 -4
- package/out/main/index.js +707 -83
- package/out/preload/content-script.js +18 -0
- package/out/preload/index.js +4 -0
- package/out/renderer/assets/{index-k2scA5OB.js → index-Cjl9fej2.js} +1070 -678
- package/out/renderer/assets/{index-CdUTXTU4.css → index-DMcjRzqj.css} +259 -19
- package/out/renderer/index.html +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -85,9 +85,9 @@ Today, Vessel provides the browser shell, page visibility, and supervisory surfa
|
|
|
85
85
|
- **Agent-first browser model** — Vessel is designed around an agent driving the browser while a human watches, intervenes, and redirects
|
|
86
86
|
- **Human-visible browser UI** — pages render like a normal browser so agent activity stays legible instead of disappearing into a headless run
|
|
87
87
|
- **Command Bar** (`Ctrl+L`) — a secondary operator surface for harness-driven workflows and future runtime commands
|
|
88
|
-
- **Supervisor Sidebar** (`Ctrl+Shift+L`) — live supervision across eight tabs: Supervisor, Bookmarks, Checkpoints, Chat,
|
|
88
|
+
- **Supervisor Sidebar** (`Ctrl+Shift+L`) — live supervision across eight tabs: Supervisor, Bookmarks, Checkpoints, Chat, Skills, History, Changes, and Research
|
|
89
89
|
- **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
|
|
90
|
-
- **
|
|
90
|
+
- **Skills** (Premium) — reusable browser skills in the sidebar Skills tab; import, view, run, or delete skills the built-in agent can use for research, shopping, and site-specific workflows
|
|
91
91
|
- **Research Desk** (Beta) — a dedicated sidebar Research tab for structured research reports; start with a topic, complete an in-tab briefing, let Vessel draft research objectives, approve the plan, then dispatch browser sub-agents to collect source-backed claims and synthesize a markdown-exportable report. Starting the brief is free; plan approval, sub-agent execution, and report export require Vessel Premium.
|
|
92
92
|
- **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
|
|
93
93
|
- **Browser Basics For Long Runs** — pinned tabs stay compact at the front of the tab strip and are protected from accidental close; tab groups can be color-coded and collapsed; audible tabs show audio indicators with mute controls; open additional browser windows with `Ctrl+N`; print the active page with `Ctrl+P` or save it directly as PDF with `Ctrl+Shift+P`
|
|
@@ -154,7 +154,7 @@ Main Process Renderer (SolidJS)
|
|
|
154
154
|
|
|
155
155
|
Each browser tab is a separate `WebContentsView` managed by the main process. The browser chrome (SolidJS) runs in its own view layered on top. All communication between renderer and main goes through typed IPC channels via `contextBridge`.
|
|
156
156
|
|
|
157
|
-
The sidebar
|
|
157
|
+
The sidebar Skills tab renders skill forms entirely in the renderer and passes the rendered prompt to the built-in agent via the same `query()` path used by the Chat tab — no additional IPC surface is needed. The Changes tab reads the current page's diff timeline through IPC and unlocks persisted history for Premium users. The Research tab has a dedicated IPC surface for its state machine: briefing is available to everyone, while objective approval, parallel browser sub-agents, report synthesis, and markdown export are Premium-gated during the beta.
|
|
158
158
|
|
|
159
159
|
## Getting Started
|
|
160
160
|
|
|
@@ -558,7 +558,7 @@ src/
|
|
|
558
558
|
│ │ └── shared/ # Settings panel
|
|
559
559
|
│ ├── stores/ # SolidJS signal stores (tabs, ai, ui, runtime, bookmarks, etc.)
|
|
560
560
|
│ ├── styles/ # Theme, global CSS
|
|
561
|
-
│ └── lib/ # Keybindings, markdown,
|
|
561
|
+
│ └── lib/ # Keybindings, markdown, skills registry
|
|
562
562
|
└── shared/ # Types + IPC channel constants
|
|
563
563
|
```
|
|
564
564
|
|