|
1 | 1 | id: agent_browser |
2 | 2 | name: Agent Browser |
3 | | -version: 0.2.0 |
| 3 | +version: 0.3.0 |
4 | 4 | description: >- |
5 | 5 | Browser automation for protoAgent, backed by **agent-browser** (vercel-labs) — a |
6 | 6 | fast native-Rust CLI/daemon that drives Chrome over CDP with accessibility-tree |
@@ -36,6 +36,20 @@ config: |
36 | 36 | manage_dashboard: true # own the dashboard lifecycle (ADR 0018): start it on boot, stop it on |
37 | 37 | # shutdown. Set false to leave a shared/persistent dashboard untouched. |
38 | 38 |
|
| 39 | +# Editable in Settings ▸ Plugins (ADR 0019) — the operator knobs above as UI fields. |
| 40 | +settings: |
| 41 | + - { key: panel_mode, label: "Browser panel mode", type: select, options: [full, minimal], description: "full = iframe agent-browser's live dashboard (viewport + activity/console/network feeds); minimal = viewport-only (a polled screenshot + a nav toolbar)." } |
| 42 | + - { key: headed, label: "Headed browser", type: bool, description: "Show a real browser window instead of running headless." } |
| 43 | + - { key: allowed_domains, label: "Allowed domains", type: string, description: "Comma-separated navigable-domain allowlist (e.g. example.com,*.foo.com). Blank = unrestricted." } |
| 44 | + - { key: confirm_actions, label: "Confirm actions", type: string, description: "Comma-separated action categories that require confirmation before the agent runs them." } |
| 45 | + - { key: profile, label: "Browser profile dir", type: string, description: "Path to a browser profile directory — isolation + persisted auth/cookies across sessions." } |
| 46 | + - { key: device, label: "Device emulation", type: string, description: "Emulate a device, e.g. \"iPhone 16 Pro\". Blank = desktop." } |
| 47 | + - { key: max_output, label: "Max page-text output (chars)", type: number, description: "Cap characters of page text returned to the model (LLM-safety). 0 = the CLI default." } |
| 48 | + - { key: dashboard_port, label: "Dashboard port", type: number, description: "Port for agent-browser's dashboard daemon; the full-mode panel reverse-proxies it." } |
| 49 | + - { key: timeout_s, label: "Command timeout (s)", type: number, description: "Per-command subprocess timeout for the browser tools." } |
| 50 | + - { key: manage_dashboard, label: "Manage dashboard lifecycle", type: bool, description: "Start the dashboard on boot and stop it on shutdown. Turn off to leave a shared/persistent dashboard untouched." } |
| 51 | + - { key: binary, label: "agent-browser binary", type: string, description: "The agent-browser CLI on PATH (override with a pinned absolute path if needed)." } |
| 52 | + |
39 | 53 | # Console view (ADR 0026) — embeds agent-browser's live dashboard (viewport + feeds). |
40 | 54 | views: |
41 | 55 | - { id: panel, label: "Browser", icon: Globe, path: /plugins/agent_browser/panel } |
|
0 commit comments