agent-browser 0.21.0 → 0.21.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -58,6 +58,16 @@ On Linux, install system dependencies:
58
58
  agent-browser install --with-deps
59
59
  ```
60
60
 
61
+ ### Updating
62
+
63
+ Upgrade to the latest version:
64
+
65
+ ```bash
66
+ agent-browser upgrade
67
+ ```
68
+
69
+ Detects your installation method (npm, Homebrew, or Cargo) and runs the appropriate update command automatically.
70
+
61
71
  ### Requirements
62
72
 
63
73
  - **Chrome** - Run `agent-browser install` to download Chrome from [Chrome for Testing](https://developer.chrome.com/blog/chrome-for-testing/) (Google's official automation channel). No Playwright or Node.js required for the daemon.
@@ -339,6 +349,7 @@ agent-browser reload # Reload page
339
349
  ```bash
340
350
  agent-browser install # Download Chrome from Chrome for Testing (Google's official automation channel)
341
351
  agent-browser install --with-deps # Also install system deps (Linux)
352
+ agent-browser upgrade # Upgrade agent-browser to the latest version
342
353
  ```
343
354
 
344
355
  ## Authentication
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-browser",
3
- "version": "0.21.0",
3
+ "version": "0.21.2",
4
4
  "description": "Headless browser automation CLI for AI agents",
5
5
  "type": "module",
6
6
  "files": [
@@ -6,7 +6,7 @@ allowed-tools: Bash(npx agent-browser:*), Bash(agent-browser:*)
6
6
 
7
7
  # Browser Automation with agent-browser
8
8
 
9
- The CLI uses Chrome/Chromium via CDP directly. Install via `npm i -g agent-browser`, `brew install agent-browser`, or `cargo install agent-browser`. Run `agent-browser install` to download Chrome.
9
+ The CLI uses Chrome/Chromium via CDP directly. Install via `npm i -g agent-browser`, `brew install agent-browser`, or `cargo install agent-browser`. Run `agent-browser install` to download Chrome. Run `agent-browser upgrade` to update to the latest version.
10
10
 
11
11
  ## Core Workflow
12
12