barebrowse 0.4.4 → 0.4.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.5
4
+
5
+ - README: "What this is" rewritten — concise, no implementation details exposed
6
+
3
7
  ## 0.4.4
4
8
 
5
9
  Snapshot URL prefix and MCP large-snapshot handling.
package/README.md CHANGED
@@ -16,11 +16,11 @@
16
16
 
17
17
  ## What this is
18
18
 
19
- barebrowse is agentic browsing stripped to the bone. It gives your AI agent eyes and hands on the web -- navigate any page, see what's there, click buttons, fill forms, scroll, and move on. It uses your installed Chromium browser (Chrome, Brave, Edge -- whatever you have), reuses your existing login sessions, and handles all the friction automatically: cookie consent walls, permission prompts, and bot detection.
19
+ barebrowse gives your AI agent a real browser. Navigate, read, interact, move on.
20
20
 
21
- Instead of dumping raw DOM or taking screenshots, barebrowse returns a **pruned ARIA snapshot** -- a compact semantic view of what's on the page and what the agent can interact with. Buttons, links, inputs, headings -- labeled with `[ref=N]` markers the agent uses to act. The pruning pipeline is ported from [mcprune](https://github.com/hamr0/mcprune) and cuts 40-90% of tokens compared to raw page output. Every token your agent reads is meaningful.
21
+ It runs on whatever browser you already have -- your sessions, your cookies. Pages come back stripped to what matters -- 40-90% fewer tokens than raw output.
22
22
 
23
- No Playwright. No bundled browser. No 200MB download. No broken dependencies. Zero deps. Just CDP over a WebSocket to whatever Chromium you already have.
23
+ No Playwright. Zero dependencies. No bundled browser. No 200MB download.
24
24
 
25
25
  ## Install
26
26
 
package/mcp-server.js CHANGED
@@ -249,7 +249,7 @@ async function handleMessage(msg) {
249
249
  return jsonrpcResponse(id, {
250
250
  protocolVersion: '2024-11-05',
251
251
  capabilities: { tools: {} },
252
- serverInfo: { name: 'barebrowse', version: '0.4.4' },
252
+ serverInfo: { name: 'barebrowse', version: '0.4.5' },
253
253
  });
254
254
  }
255
255
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "barebrowse",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "Authenticated web browsing for autonomous agents via CDP. URL in, pruned ARIA snapshot out.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",