fastbrowser_cli 1.0.3 → 1.0.4
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.
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
---
|
|
2
|
-
name:
|
|
2
|
+
name: fastbrowser
|
|
3
3
|
description: >
|
|
4
|
-
Control a live browser from the command line: navigate, click, fill forms, and query the accessibility tree with CSS-like selectors. Lighter alternative to Chrome DevTools MCP or Puppeteer. Triggers on: navigate/click/fill actions, page snapshots, or mentions of
|
|
4
|
+
Control a live browser from the command line: navigate, click, fill forms, and query the accessibility tree with CSS-like selectors. Lighter alternative to Chrome DevTools MCP or Puppeteer. Triggers on: navigate/click/fill actions, page snapshots, or mentions of fastbrowser.
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
-
#
|
|
7
|
+
# fastbrowser Skill
|
|
8
8
|
|
|
9
|
-
`
|
|
9
|
+
`fastbrowser-cli` is a command-line client for the FastWeb HTTP server, which keeps a persistent
|
|
10
10
|
MCP connection to a Chrome browser alive so commands incur minimal latency. Each command
|
|
11
11
|
maps 1-to-1 to a FastWeb tool and returns the tool's response on stdout.
|
|
12
12
|
|
|
@@ -211,4 +211,4 @@ npx fastbrowser_cli press_keys --keys "Hello, Tab, Enter"
|
|
|
211
211
|
## Output & Errors
|
|
212
212
|
|
|
213
213
|
Tool output is written to **stdout** — one line per response content part. On failure the
|
|
214
|
-
CLI writes `
|
|
214
|
+
CLI writes `fastbrowser-cli error: <message>` to **stderr** and exits with code 1.
|