diff --git a/.changeset/release-8be61365.md b/.changeset/release-8be61365.md deleted file mode 100644 index bd55e96..0000000 --- a/.changeset/release-8be61365.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"agent-browser": minor ---- - -Add annotated screenshots with the new --annotate flag, which overlays numbered labels on interactive elements and prints a legend mapping each label to its element ref. This enables multimodal AI models to reason about visual layout while using the same @eN refs for subsequent interactions. The flag can also be set via the AGENT_BROWSER_ANNOTATE environment variable. diff --git a/CHANGELOG.md b/CHANGELOG.md index ed539dc..b0f11bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # agent-browser +## 0.12.0 + +### Minor Changes + +- 69ffad0: Add annotated screenshots with the new --annotate flag, which overlays numbered labels on interactive elements and prints a legend mapping each label to its element ref. This enables multimodal AI models to reason about visual layout while using the same @eN refs for subsequent interactions. The flag can also be set via the AGENT_BROWSER_ANNOTATE environment variable. + ## 0.11.1 ### Patch Changes diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 87c1ec5..2389d69 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "agent-browser" -version = "0.11.1" +version = "0.12.0" dependencies = [ "base64", "dirs", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index c57137a..606f459 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent-browser" -version = "0.11.1" +version = "0.12.0" edition = "2021" description = "Fast browser automation CLI for AI agents" license = "Apache-2.0" diff --git a/package.json b/package.json index f217397..fba270b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "agent-browser", - "version": "0.11.1", + "version": "0.12.0", "description": "Headless browser automation CLI for AI agents", "type": "module", "main": "dist/daemon.js",