Zot Chrome Operator: Let Your Terminal AI Agent Drive the Browser via Side Panel

Zot Chrome Operator bridges your terminal-based coding agent zot with Chrome, letting zot operate browser tabs via a browser_action tool. The project by Patrice Eckhart provides a Chrome side panel for chatting with zot and a local WebSocket bridge that executes browser actions.
Installation
No changes to zot itself required. Run:
zot ext install https://github.com/patriceckhart/zot-chrome-operator node "$HOME/Library/Application Support/zot/extensions/zot-chrome-operator/bin/install-cli.js"
The second command creates a zot-chrome shim at ~/.local/bin/zot-chrome. Ensure that directory is on your PATH (add export PATH="$HOME/.local/bin:$PATH" to your shell profile if needed). The shim is auto-refreshed on next zot start, but running install-cli.js makes it available immediately.
Setup Steps
- Build the Chrome extension:
zot-chrome extprints the path to the unpacked build (e.g.,/Users/you/Library/Application Support/zot/extensions/zot-chrome-operator/dist). Load it in Chrome viachrome://extensionswith Developer mode enabled → Load unpacked. - Start the bridge:
zot-chrome startbuilds the extension if needed and starts the bridge in the background. The bridge runszot rpc --no-sessionand listens onws://localhost:9224. - Environment variables:
ZOT_PROVIDER=anthropic ZOT_MODEL=claude-sonnet-4-5 zot-chrome startorPORT=9225 zot-chrome startto customize.
Commands
zot-chrome start– Start the bridge server in backgroundzot-chrome stop– Stop the bridgezot-chrome status– Check bridge statezot-chrome logs– Tail bridge logszot-chrome ext– Print or build the unpacked extension path
Browser Capabilities
The registered zot tool can: list, create, switch, and close tabs; inspect page context; navigate; click; type into native and rich editors; select options; scroll; extract page text; and wait. No session is persisted — the bridge uses zot --no-session.
The bridge logs all actions, viewable with zot-chrome logs.
📖 Read the full source: HN AI Agents
👀 See Also

Open-Source Claude Code Plugins for Agentic Commerce Protocols
OrcaQubits has released eight open-source Claude Code plugins that implement agentic commerce protocols including UCP, ACP, AP2, and A2A, with MIT licensing and support for platforms like Magento 2, BigCommerce, and WooCommerce.

Clawdwatch: Open-source OSINT tool for real-time flight tracking, news scraping, and alerts
Clawdwatch is a CLI tool that pulls live flight data from OpenSky Network, scrapes news from Al Jazeera and AP, and can send Telegram alerts for military aircraft or emergency squawks. It runs locally with npm install and tracks 204+ flights over the Middle East in real-time.

MCP Server for TypeScript Projects Replaces Claude Code's Grep Pattern with Indexed Symbol Lookups
A developer built an MCP server that replaces Claude Code's grep-and-guess pattern with indexed symbol lookups for TypeScript projects. The tool maintains a live SQLite index of symbols, call sites, imports, and class hierarchy, reducing token usage by 63-79% in tests.

Paper Lantern MCP Server Connects Claude Code to Research Papers
Paper Lantern is an MCP server built with Claude Code that connects coding agents to over 2 million CS and 43 million biomedical research papers, enabling them to find benchmarked methods instead of defaulting to training data.