@vibebrowser/cli 0.2.8
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 +13 -0
- package/dist/browser-cli.js +1881 -0
- package/dist/browser-main.js +11 -0
- package/dist/connection.js +536 -0
- package/dist/devtools-fallback.js +172 -0
- package/dist/relay-daemon.js +13 -0
- package/dist/relay.js +813 -0
- package/dist/types.js +22 -0
- package/dist/version.js +15 -0
- package/package.json +56 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# @vibebrowser/cli
|
|
2
|
+
|
|
3
|
+
Standalone CLI for controlling a Vibe-connected browser session.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
VIBE_REMOTE_UUID="2d2f60a1-2031-4279-aa25-358f2c5b6f84"
|
|
7
|
+
VIBE_REMOTE_URL="wss://relay.api.vibebrowser.app/2d2f60a1-2031-4279-aa25-358f2c5b6f84"
|
|
8
|
+
|
|
9
|
+
npx @vibebrowser/cli --remote "$VIBE_REMOTE_UUID" --json status
|
|
10
|
+
npx @vibebrowser/cli --remote "$VIBE_REMOTE_URL" --json tabs
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
`--remote <uuid>` uses the default public Vibe relay. `--remote <full-ws-url>` targets an explicit relay endpoint.
|