browserclaw 0.5.3 → 0.5.6
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 +6 -0
- package/dist/index.cjs +1140 -216
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1139 -196
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -81,6 +81,12 @@ When you're running the same multi-step workflow hundreds of times — filling f
|
|
|
81
81
|
- **Reliability**: Ref-based targeting is deterministic. Same page state → same refs → same result. No coordinate guessing, no LLM re-interpretation.
|
|
82
82
|
- **Simplicity**: No framework opinions, no agent loop, no hosted platform. Just `snapshot()` → read refs → act. Compose it into whatever agent architecture you want.
|
|
83
83
|
|
|
84
|
+
## Try It Live — Or On Your Machine
|
|
85
|
+
|
|
86
|
+
[browserclaw.org](https://browserclaw.org) is an open-source playground where you can type a prompt and watch an AI agent use browserclaw in a real browser — live. No setup, no API keys, just a text box and a browser stream.
|
|
87
|
+
|
|
88
|
+
Want to run it yourself? The source is at [github.com/idan-rubin/browserclaw.org](https://github.com/idan-rubin/browserclaw.org) — spin it up with Docker or Node.js. Supports Groq, Gemini, and OpenAI out of the box.
|
|
89
|
+
|
|
84
90
|
## Install
|
|
85
91
|
|
|
86
92
|
```bash
|