browse-agent-cli 0.0.3 → 0.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.
- package/package.json +11 -1
- package/skills/SKILL.md +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "browse-agent-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "TypeScript CLI for browse-agent",
|
|
6
6
|
"main": "./dist/cli.js",
|
|
@@ -37,5 +37,15 @@
|
|
|
37
37
|
"tsdown": "^0.13.3",
|
|
38
38
|
"typescript": "^5.4.0"
|
|
39
39
|
},
|
|
40
|
+
"bugs": {
|
|
41
|
+
"url": "https://github.com/imlinhanchao/browse-agent/issues"
|
|
42
|
+
},
|
|
43
|
+
"homepage": "https://github.com/imlinhanchao/browse-agent#readme",
|
|
44
|
+
"author": {
|
|
45
|
+
"name": "Hancel.Lin",
|
|
46
|
+
"email": "imlinhanchao@foxmail.com",
|
|
47
|
+
"url": "https://github.com/imlinhanchao"
|
|
48
|
+
},
|
|
49
|
+
"keywords": ["chrome", "browser", "automation", "websocket", "extension"],
|
|
40
50
|
"license": "MIT"
|
|
41
51
|
}
|
package/skills/SKILL.md
CHANGED
|
@@ -6,7 +6,7 @@ argument-hint: "URL to visit, or describe what data to extract from the web"
|
|
|
6
6
|
|
|
7
7
|
# Browse Agent — Web Browsing & Data Extraction
|
|
8
8
|
|
|
9
|
-
Control a real Chrome browser to visit web pages, extract content, take screenshots, query DOM elements, and run JavaScript
|
|
9
|
+
Control a real Chrome browser to visit web pages, extract content, take screenshots, query DOM elements, and run JavaScript.
|
|
10
10
|
|
|
11
11
|
## Prerequisites
|
|
12
12
|
|
|
@@ -19,7 +19,7 @@ Control a real Chrome browser to visit web pages, extract content, take screensh
|
|
|
19
19
|
browse-agent setup
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
Auto-detects local vs global mode.
|
|
22
|
+
Auto-detects local vs global mode. The setup checks existing state — if already installed, it exits immediately.
|
|
23
23
|
|
|
24
24
|
## Usage Procedure — Step-by-Step (Recommended)
|
|
25
25
|
|