unbrowse 2.0.5 → 2.0.14
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 +11 -3
- package/dist/cli.js +418 -118
- package/package.json +2 -2
- package/runtime-src/api/routes.ts +9 -4
- package/runtime-src/auth/index.ts +73 -22
- package/runtime-src/capture/index.ts +139 -39
- package/runtime-src/cli.ts +17 -2
- package/runtime-src/client/index.ts +10 -104
- package/runtime-src/execution/index.ts +319 -42
- package/runtime-src/intent-match.ts +56 -13
- package/runtime-src/kuri/client.ts +102 -39
- package/runtime-src/mcp.ts +369 -0
- package/runtime-src/orchestrator/index.ts +168 -44
- package/runtime-src/ratelimit/index.ts +2 -1
- package/runtime-src/reverse-engineer/index.ts +10 -3
- package/runtime-src/runtime/local-server.ts +46 -2
- package/runtime-src/runtime/paths.ts +9 -0
- package/runtime-src/types/skill.ts +2 -0
- package/vendor/kuri/darwin-arm64/kuri +0 -0
- package/vendor/kuri/darwin-x64/kuri +0 -0
- package/vendor/kuri/linux-arm64/kuri +0 -0
- package/vendor/kuri/linux-x64/kuri +0 -0
- package/vendor/kuri/win32-x64/kuri.exe +0 -0
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ One agent learns a site once. Every later agent gets the fast path.
|
|
|
15
15
|
npx unbrowse setup
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
`npx unbrowse setup` downloads the CLI on demand, verifies the bundled Kuri runtime,
|
|
18
|
+
`npx unbrowse setup` downloads the CLI on demand, verifies the bundled Kuri runtime, auto-registers the agent, registers the Open Code `/unbrowse` command when Open Code is detected, and starts the local server.
|
|
19
19
|
|
|
20
20
|
For daily use:
|
|
21
21
|
|
|
@@ -30,6 +30,13 @@ If your agent host uses skills:
|
|
|
30
30
|
npx skills add unbrowse-ai/unbrowse
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
+
## Whitepaper
|
|
34
|
+
|
|
35
|
+
The official Unbrowse whitepaper is [`Internal APIs Are All You Need`](./docs/whitepaper/README.md).
|
|
36
|
+
|
|
37
|
+
- Read the overview: [`docs/whitepaper/README.md`](./docs/whitepaper/README.md)
|
|
38
|
+
- Download the canonical PDF: [`docs/whitepaper/unbrowse-whitepaper.pdf`](./docs/whitepaper/unbrowse-whitepaper.pdf)
|
|
39
|
+
|
|
33
40
|
## Upgrading
|
|
34
41
|
|
|
35
42
|
Unbrowse no longer self-updates at runtime. If you already have Unbrowse installed, upgrade to the latest version after each release or the new flow may not work on your machine.
|
|
@@ -49,7 +56,9 @@ npx skills add unbrowse-ai/unbrowse
|
|
|
49
56
|
|
|
50
57
|
Need help or want release updates? Join the Discord: [discord.gg/VWugEeFNsG](https://discord.gg/VWugEeFNsG)
|
|
51
58
|
|
|
52
|
-
Every CLI command auto-starts the local server on `http://localhost:6969` by default. Override with `UNBROWSE_URL`, `PORT`, or `HOST`. On first startup it auto-registers as an agent with the marketplace and caches credentials in `~/.unbrowse/config.json`.
|
|
59
|
+
Every CLI command auto-starts the local server on `http://localhost:6969` by default. Override with `UNBROWSE_URL`, `PORT`, or `HOST`. On first startup it auto-registers as an agent with the marketplace and caches credentials in `~/.unbrowse/config.json`. If you want a stable email-style identity instead of a local machine id, set `UNBROWSE_AGENT_EMAIL`.
|
|
60
|
+
|
|
61
|
+
Using Unbrowse means accepting the Terms of Service: discovered API structures may be shared in the collective registry, and you must not use Unbrowse to attack, overload, or abuse target sites. Full terms: https://unbrowse.ai/terms
|
|
53
62
|
|
|
54
63
|
Works with Claude Code, Open Code, Cursor, Codex, Windsurf, and any agent host that can call a local CLI or skill.
|
|
55
64
|
|
|
@@ -179,7 +188,6 @@ See [SKILL.md](./SKILL.md) for the full API reference including all endpoints, s
|
|
|
179
188
|
| `UNBROWSE_URL` | `http://localhost:6969` | Base URL for API calls |
|
|
180
189
|
| `UNBROWSE_API_KEY` | auto-generated | API key override |
|
|
181
190
|
| `UNBROWSE_AGENT_EMAIL` | — | Preferred email-style agent name for registration |
|
|
182
|
-
| `UNBROWSE_TOS_ACCEPTED` | — | Accept ToS non-interactively |
|
|
183
191
|
| `UNBROWSE_NON_INTERACTIVE` | — | Skip readline prompts |
|
|
184
192
|
|
|
185
193
|
## System layout
|