@vibecodr/cli 1.0.14 → 1.0.15

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/docs/commands.md CHANGED
@@ -116,9 +116,22 @@ Prints (`--print`) the MCP connection details for the hosted Agent Computer. The
116
116
  - `browser crawl <https-url> [--max-pages n] [--max-depth n] [--local|--out ./proof]`
117
117
  - `browser snapshot <https-url> [--local|--out ./proof]`
118
118
  - `browser notes <https-url> --note <text> [--local|--out ./proof]`
119
+ - `browser session open <https-url> [--timeout-ms <ms>] [--idle-timeout-ms <ms>]`
120
+ - `browser session observe <sessionId>`
121
+ - `browser session goto <sessionId> <https-url>`
122
+ - `browser session click <sessionId> --selector <css>`
123
+ - `browser session type <sessionId> --selector <css> --text <text>`
124
+ - `browser session scroll <sessionId> [--delta-y 800]`
125
+ - `browser session wait <sessionId> [--ms 1000]`
126
+ - `browser session live <sessionId> [--no-open] [--debug|--view devtools]`
127
+ - `browser session auth <sessionId> [--no-open] [--debug|--view devtools]`
128
+ - `browser session auth-status <sessionId>`
129
+ - `browser session auth-complete <sessionId>`
130
+ - `browser session auth-revoke <sessionId>`
131
+ - `browser session close <sessionId>`
119
132
 
120
133
  Public HTTPS URLs only. Localhost, private network ranges, URL credentials, and internal hostnames are blocked before any hosted work is submitted. `--no-wait` returns immediately with a `jobId` you can follow via `vibecodr work follow`. `--details` includes capability metadata in the response.
121
- Use `--local` to save the completed output into `./vibecodr-proof` automatically, or `--out` when you want to choose the destination. `browser snapshot` captures page state; it does not prompt an agent or model. `browser notes` saves your note with the snapshot.
134
+ Use `--local` to save completed one-shot outputs into `./vibecodr-proof` automatically, or `--out` when you want to choose the destination. Automatic output saves are workspace-bounded; if `--out` points outside the current workspace, Vibecodr writes to `./.vibecodr/browser-artifacts/<run>` instead and returns a warning. `browser snapshot` captures page state; it does not prompt an agent or model. `browser notes` saves your note with the snapshot. `browser session` opens a hosted Agent Browser that the agent can observe and control until it is closed or idle; each observe/action returns fresh screenshot proof. `browser session live` opens the watch page without pausing the agent. `browser session auth` opens the same live page with human control already active for login, MFA, CAPTCHA, or another human-only step before handing the same hosted browser back. The live page lets the owner watch, take over, give back, or end the browser. It defaults to the plain browser tab; add `--debug` or `--view devtools` only when an agent/developer needs the inspector panel.
122
135
 
123
136
  ## Hosted computer (H)
124
137
 
@@ -552,7 +552,7 @@ consented private-network connector.
552
552
  ```text
553
553
  Blocked for safety: browser calls cannot include cookies, credentials, auth
554
554
  headers, storage state, or secrets. Use a public page, or connect an
555
- authenticated browsing session when that beta is available.
555
+ Agent Browser live session when a human needs to sign in.
556
556
  ```
557
557
 
558
558
  Acceptance tests:
@@ -979,4 +979,3 @@ required.
979
979
  `--dry-run` to plan without writing.
980
980
  - `vc-tools dashboard` opens the dashboard URL in the local browser unless
981
981
  `--no-open`, `--json`, `--quiet`, or `--no-input` is set.
982
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibecodr/cli",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "The official Vibecodr CLI: hosted browser, hosted computer, capsule uploads, Pulse operations, and agent-client MCP setup under one command.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",