diff --git a/.changeset/fix-daemon-not-found.md b/.changeset/fix-daemon-not-found.md deleted file mode 100644 index 4873c8d..0000000 --- a/.changeset/fix-daemon-not-found.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": patch ---- - -Fixed "Daemon not found" error when running through AI agents (e.g., Claude Code) by resolving symlinks in the executable path. Previously, npm global bin symlinks weren't being resolved correctly, causing intermittent daemon discovery failures. diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f08edf..279c0eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.8.4 + +### Patch Changes + +- 759302e: Fixed "Daemon not found" error when running through AI agents (e.g., Claude Code) by resolving symlinks in the executable path. Previously, npm global bin symlinks weren't being resolved correctly, causing intermittent daemon discovery failures. + ## 0.8.3 ### Patch Changes diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 98341e3..19f7748 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.8.3" +version = "0.8.4" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index 6994c8d..3115ada 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.8.3", + "version": "0.8.4", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",