diff --git a/.changeset/tough-bees-speak.md b/.changeset/tough-bees-speak.md deleted file mode 100644 index afe38bd..0000000 --- a/.changeset/tough-bees-speak.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -"agent-browser": minor ---- - -## New Features - -- **Cloud browser providers** - Connect to Browserbase or Browser Use for remote browser infrastructure via `-p` flag or `AGENT_BROWSER_PROVIDER` env var -- **Persistent browser profiles** - Store cookies, localStorage, and login sessions across browser restarts with `--profile` -- **Remote CDP WebSocket URLs** - Connect to remote browser services via WebSocket URL (e.g., `--cdp "wss://..."`) -- **Download commands** - New `download` command and `wait --download` for file downloads with ref support -- **Browser launch configuration** - New `--args`, `--user-agent`, and `--proxy-bypass` flags for fine-grained browser control -- **Enhanced skills** - Hierarchical structure with references and templates for Claude Code - -## Bug Fixes - -- Screenshot command now supports refs and has improved error messages -- WebSocket URLs work in `connect` command -- Fixed socket file location (uses `~/.agent-browser` instead of TMPDIR) -- Windows binary path fix (.exe extension) -- State load and path-based actions now show correct output messages - -## Documentation - -- Added Claude Code marketplace plugin installation instructions -- Updated skill documentation with references and templates -- Improved error documentation diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d5cd440 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,25 @@ +# agent-browser + +## 0.7.0 + +### Minor Changes + +- 316e649: ## New Features + - **Cloud browser providers** - Connect to Browserbase or Browser Use for remote browser infrastructure via `-p` flag or `AGENT_BROWSER_PROVIDER` env var + - **Persistent browser profiles** - Store cookies, localStorage, and login sessions across browser restarts with `--profile` + - **Remote CDP WebSocket URLs** - Connect to remote browser services via WebSocket URL (e.g., `--cdp "wss://..."`) + - **Download commands** - New `download` command and `wait --download` for file downloads with ref support + - **Browser launch configuration** - New `--args`, `--user-agent`, and `--proxy-bypass` flags for fine-grained browser control + - **Enhanced skills** - Hierarchical structure with references and templates for Claude Code + + ## Bug Fixes + - Screenshot command now supports refs and has improved error messages + - WebSocket URLs work in `connect` command + - Fixed socket file location (uses `~/.agent-browser` instead of TMPDIR) + - Windows binary path fix (.exe extension) + - State load and path-based actions now show correct output messages + + ## Documentation + - Added Claude Code marketplace plugin installation instructions + - Updated skill documentation with references and templates + - Improved error documentation diff --git a/package.json b/package.json index 6a9fd19..6b7a0ec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.6.0", + "version": "0.7.0", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",