chrome-agent 0.14.0 → 0.15.0

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.
Files changed (2) hide show
  1. package/README.md +5 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -73,7 +73,7 @@ chrome-agent screenshot
73
73
  ## How It Works
74
74
 
75
75
  ```
76
- chrome-agent v0.14.0 (Rust, ~11.5K lines, 3 MB binary)
76
+ chrome-agent v0.15.0 (~22.2K lines of Rust in src/, 3 MB binary)
77
77
 
78
78
  │ WebSocket (Chrome DevTools Protocol)
79
79
 
@@ -122,7 +122,8 @@ UIDs are stable across inspects (based on Chrome's `backendNodeId`). The agent i
122
122
  ```
123
123
  --browser <name> Named browser profile (default: "default")
124
124
  --page <name> Named page/tab (default: "default")
125
- --connect [url] Connect to running Chrome (auto or explicit)
125
+ --connect <auto|url> Connect to running Chrome (a value is required: "auto", or a
126
+ ws:// or http:// URL)
126
127
  --headed Show browser window (default is headless)
127
128
  --stealth Bypass bot detection (Cloudflare, Turnstile)
128
129
  --timeout <seconds> Command timeout (default: 30)
@@ -318,7 +319,7 @@ Tell your agent to run `chrome-agent --help` — the help output includes a comp
318
319
  ### Connect to Your Browser
319
320
 
320
321
  ```bash
321
- chrome-agent --connect inspect # auto-discover Chrome with debugging
322
+ chrome-agent --connect auto inspect # auto-discover Chrome with debugging
322
323
  google-chrome --remote-debugging-port=9222 # or launch manually
323
324
  ```
324
325
 
@@ -340,7 +341,7 @@ google-chrome --remote-debugging-port=9222 # or launch manually
340
341
  | Network capture | Retroactive + live | No | No | Metadata only (no bodies) |
341
342
  | Console capture | Stealth-safe interceptor | No | Console messages | No |
342
343
  | Pipe mode | JSON stdin/stdout | No | No | No |
343
- | Code | ~10.2K lines | ~76K lines (69K Playwright fork) | ~12K lines | Playwright |
344
+ | Code | ~22.2K lines of Rust in `src/` (blank and comment-only lines excluded; a test re-measures it) | ~76K lines (their figure, unverified here) | ~12K lines (their figure, unverified here) | Playwright |
344
345
 
345
346
  ## License
346
347
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chrome-agent",
3
- "version": "0.14.0",
3
+ "version": "0.15.0",
4
4
  "description": "Browser automation for AI agents. Single binary, zero dependencies, CDP direct.",
5
5
  "type": "module",
6
6
  "bin": {