browser4-cli 4.13.8 β 4.13.10
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 +31 -4
- package/bin/browser4-cli-darwin-arm64 +0 -0
- package/bin/browser4-cli-darwin-x64 +0 -0
- package/bin/browser4-cli-linux-arm64 +0 -0
- package/bin/browser4-cli-linux-musl-arm64 +0 -0
- package/bin/browser4-cli-linux-musl-x64 +0 -0
- package/bin/browser4-cli-linux-x64 +0 -0
- package/bin/browser4-cli-win32-x64.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
# π€ Browser4
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<p align="center">
|
|
4
|
+
<a href="https://github.com/platonai/Browser4/actions/workflows/ci.yml"><img alt="CI build" src="https://img.shields.io/github/actions/workflow/status/platonai/Browser4/ci.yml?branch=main&style=flat-square"></a>
|
|
5
|
+
<a href="https://github.com/platonai/Browser4/releases"><img alt="Release" src="https://img.shields.io/github/v/release/platonai/Browser4?style=flat-square"></a>
|
|
6
|
+
<a href="https://github.com/platonai/Browser4"><img alt="Stars" src="https://img.shields.io/github/stars/platonai/Browser4?style=flat-square"></a>
|
|
7
|
+
<a href="https://central.sonatype.com/artifact/ai.platon.pulsar/browser4-core"><img alt="Maven Central" src="https://img.shields.io/maven-central/v/ai.platon.pulsar/browser4-core?style=flat-square"></a>
|
|
8
|
+
<a href="https://www.npmjs.com/package/browser4-cli"><img alt="npm" src="https://img.shields.io/npm/v/browser4-cli?style=flat-square"></a>
|
|
9
|
+
<a href="https://browser4.io"><img alt="Website" src="https://img.shields.io/website?url=https%3A%2F%2Fbrowser4.io&style=flat-square"></a>
|
|
10
|
+
<a href="https://github.com/platonai/Browser4"><img alt="Top language" src="https://img.shields.io/github/languages/top/platonai/Browser4?style=flat-square"></a>
|
|
11
|
+
<a href="https://github.com/platonai/Browser4/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/badge/license-APACHE2-green?style=flat-square"></a>
|
|
12
|
+
</p>
|
|
4
13
|
|
|
5
14
|
---
|
|
6
15
|
|
|
@@ -62,6 +71,15 @@ Read https://browser4.io/SKILL.md and install browser4-cli (if not installed) fo
|
|
|
62
71
|
5. write the result to a markdown file
|
|
63
72
|
```
|
|
64
73
|
|
|
74
|
+
## DeepSeek Harness integration
|
|
75
|
+
|
|
76
|
+
https://github.com/platonai/dsh-browser4
|
|
77
|
+
|
|
78
|
+
```
|
|
79
|
+
dsh plugin --profile web add dsh-browser4 # npm registry
|
|
80
|
+
dsh plugin --profile web add github:platonai/dsh-browser4 # GitHub
|
|
81
|
+
```
|
|
82
|
+
|
|
65
83
|
## π§ Tool Selection Guide
|
|
66
84
|
|
|
67
85
|
Choosing the right tool for your task:
|
|
@@ -112,13 +130,14 @@ Need to process multiple pages?
|
|
|
112
130
|
|
|
113
131
|
### How to Turn HTML into Spreadsheets β Zero Tokens
|
|
114
132
|
|
|
115
|
-
[WebMiner](https://github.com/platonai/web-miner) runs ML clustering on downloaded HTML files to produce structured spreadsheets and interactive reports β **no LLM tokens, everything runs locally.**
|
|
133
|
+
[WebMiner](https://github.com/platonai/web-miner) runs ML clustering on downloaded HTML files to produce structured spreadsheets and interactive reports β **no LLM tokens, everything runs locally.** webminer is a first-class Browser4 CLI citizen: `browser4-cli webminer install` + `browser4-cli webminer all <html-dir>` runs the whole pipeline without PowerShell.
|
|
116
134
|
|
|
117
135
|
```
|
|
118
136
|
Have HTML files and want structured data β without tokens?
|
|
119
137
|
ββ < 20 pages? β browser4-cli crawl --seed-file urls.txt --depth 0 --sql @query.sql
|
|
120
138
|
ββ < 1,000 pages (small to medium)? β WebMiner Free (SMILE ML engine)
|
|
121
|
-
β
|
|
139
|
+
β browser4-cli webminer install
|
|
140
|
+
β browser4-cli webminer all ./pages/
|
|
122
141
|
β β Interactive HTML report + Excel spreadsheets β local, zero cost
|
|
123
142
|
ββ > 1,000 pages (production scale)? β WebMiner Commercial (Apache Spark ML)
|
|
124
143
|
β Same encode β cluster β views pipeline, distributed across machines
|
|
@@ -129,7 +148,7 @@ Have HTML files and want structured data β without tokens?
|
|
|
129
148
|
Then feed the HTML directory to WebMiner
|
|
130
149
|
```
|
|
131
150
|
|
|
132
|
-
> **Pipeline:** `encode` (HTML β feature vectors β CSV) β `cluster` (KMeans, auto-detected K) β `views` (HTML report + Excel). Free tier uses the [SMILE](https://haifengl.github.io/) ML library for single-machine clustering (< 1,000 pages). Requires JDK 17
|
|
151
|
+
> **Pipeline:** `encode` (HTML β feature vectors β CSV) β `cluster` (KMeans, auto-detected K) β `views` (HTML report + Excel). Free tier uses the [SMILE](https://haifengl.github.io/) ML library for single-machine clustering (< 1,000 pages). Requires JDK 17+ (auto-detected). See [web-miner](https://github.com/platonai/web-miner) and `browser4-cli help webminer` for usage.
|
|
133
152
|
|
|
134
153
|
---
|
|
135
154
|
|
|
@@ -699,6 +718,8 @@ Join our community for support, feedback, and collaboration!
|
|
|
699
718
|
|
|
700
719
|
We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for details.
|
|
701
720
|
|
|
721
|
+
<img width="400" height="400" alt="ηΎ€θοΌdsh-Browser4η€ΎεΊδΊ€ζ΅3ηΎ€" src="https://github.com/user-attachments/assets/c15fe635-0e9f-4ac2-b038-abec6bd6bbe4" />
|
|
722
|
+
|
|
702
723
|
---
|
|
703
724
|
|
|
704
725
|
## π Documentation
|
|
@@ -727,3 +748,9 @@ If you need this type of URL, please contact your proxy service provider.
|
|
|
727
748
|
## License
|
|
728
749
|
|
|
729
750
|
Apache 2.0 License. See [LICENSE](LICENSE) for details.
|
|
751
|
+
|
|
752
|
+
## Links
|
|
753
|
+
|
|
754
|
+
* [omdsh-dev/dsh-data-agent](https://github.com/omdsh-dev/dsh-data-agent) - DSH Data Agent Β· Analyze data through conversation
|
|
755
|
+
* [ccch1mneyyy/dsh-TUI](https://github.com/ccch1mneyyy/dsh-TUI) - DSH TUI Β· Text-based User Interface
|
|
756
|
+
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|