mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-19 16:31:30 +00:00
Introduce the new built-in Browser plugin for Agent Zero, replacing the legacy browser-use-based browser agent with a direct Playwright-powered browser tool, live WebUI viewer, browser session controls, status APIs, configuration, and extension-management support. Add browser-specific modal behavior so the browser can run as a floating, resizable, no-backdrop window, including modal focus, toggle, and idempotent open helpers for richer WebUI surfaces. Remove the old `_browser_agent` core plugin and the `browser-use` dependency, then clean up stale browser-model wiring and references across agent code, model configuration docs, setup guides, troubleshooting docs, skills, and Agent Zero knowledge. Update regression and WebUI extension-surface coverage for the new browser architecture and modal behavior. The legacy browser-use implementation has been extracted from core so it can continue separately as a community plugin published through the A0 Plugin Index for any user or professional that were relying on it for workflow.
17 lines
723 B
HTML
17 lines
723 B
HTML
<button
|
|
type="button"
|
|
class="text-button browser-chat-action"
|
|
title="Show or hide Browser"
|
|
aria-label="Show or hide Browser"
|
|
data-bs-placement="top"
|
|
data-bs-trigger="hover"
|
|
@click="window.toggleModal ? window.toggleModal('/plugins/_browser/webui/main.html') : window.openModal('/plugins/_browser/webui/main.html')"
|
|
>
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" width="14" height="14" aria-hidden="true">
|
|
<rect x="3" y="4" width="18" height="16" rx="2"></rect>
|
|
<path d="M3 8h18"></path>
|
|
<path d="M7 6h.01"></path>
|
|
<path d="M10 6h.01"></path>
|
|
</svg>
|
|
<p>Browser</p>
|
|
</button>
|