@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/README.md +7 -1
- package/dist/commands/status.d.ts.map +1 -1
- package/dist/commands/status.js +28 -2
- package/dist/commands/status.js.map +1 -1
- package/dist/dryrun-logpush-check/README.md +1 -0
- package/dist/dryrun-logpush-check/worker.js +41512 -0
- package/dist/dryrun-logpush-check/worker.js.map +8 -0
- package/dist/legacy/cli/run.d.ts.map +1 -1
- package/dist/legacy/cli/run.js +410 -13
- package/dist/legacy/cli/run.js.map +1 -1
- package/dist/legacy/core/contracts.d.ts +76 -4
- package/dist/legacy/core/contracts.d.ts.map +1 -1
- package/dist/legacy/core/contracts.js +53 -3
- package/dist/legacy/core/contracts.js.map +1 -1
- package/dist/legacy/core/validators.js +1 -1
- package/dist/legacy/core/validators.js.map +1 -1
- package/dist/legacy/core/version.d.ts +2 -2
- package/dist/legacy/core/version.js +1 -1
- package/docs/API-CONTRACT.md +73 -5
- package/docs/CLOUDFLARE-PRIMITIVE-FIT.md +59 -4
- package/docs/VALIDATION-MATRIX.md +3 -3
- package/docs/commands.md +14 -1
- package/docs/legacy/vc-tools-finetune.md +1 -2
- package/package.json +1 -1
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
|
|
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
|
-
|
|
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.
|
|
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",
|