unbrowse 7.0.1 → 7.0.2
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/SKILL.md +4 -3
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -8,17 +8,18 @@ metadata:
|
|
|
8
8
|
|
|
9
9
|
# Unbrowse
|
|
10
10
|
|
|
11
|
-
Unbrowse turns websites into reusable API routes for agents. Teach a route once, store sanitized metadata, replay it on later calls. Typical run is 30× faster and 90× cheaper than a fresh browser session.
|
|
11
|
+
Unbrowse turns websites into reusable API routes for agents. Teach a route once, store sanitized metadata, replay it on later calls. Typical run is 30× faster and 90× cheaper than a fresh browser session — peer-reviewed benchmark across 94 live domains: 3.6× mean speedup, 5.4× median, 40× fewer tokens ([arXiv:2604.00694](https://arxiv.org/abs/2604.00694)).
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Four surfaces, one runtime:
|
|
14
14
|
|
|
15
15
|
| Surface | When to reach for it |
|
|
16
16
|
|---|---|
|
|
17
17
|
| **MCP server** | An MCP-host agent (Claude Desktop, Cursor, Codex, Claude Code). Tool calls like `unbrowse_resolve`, `unbrowse_execute`, `unbrowse_go` appear in the host. |
|
|
18
18
|
| **CLI** (`unbrowse`) | A shell session or a bash-script that wants the same surface as the MCP server, without an MCP host. |
|
|
19
19
|
| **SDK** (`@unbrowse/sdk`) | A TypeScript program that wants to embed Unbrowse. `npm i @unbrowse/sdk` is enough; the SDK spawns its own local binary. |
|
|
20
|
+
| **Drop-in shims** | One-line replace for existing tools: `@unbrowse/playwright-shim`, `@unbrowse/firecrawl-shim`, `@unbrowse/stagehand-shim`. Cache hit → free; miss → fall through to the original library. |
|
|
20
21
|
|
|
21
|
-
All
|
|
22
|
+
All four resolve to the same runtime workflow underneath:
|
|
22
23
|
- **resolve** asks "is there an indexed route for this intent + URL?" — returns a shortlist or a hard handoff.
|
|
23
24
|
- **execute** picks one endpoint from the shortlist and runs it — returns the real data.
|
|
24
25
|
- **browse-session** opens a managed browser when the API is too dynamic to predict; local capture indexes route metadata.
|