barebrowse 0.5.1 → 0.5.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/CHANGELOG.md CHANGED
@@ -1,8 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## 0.5.1
3
+ ## 0.5.2
4
4
 
5
- bareagent tool parity + test fix.
5
+ Clean npm tarball + bareagent tool parity.
6
+
7
+ ### npm package
8
+ - `.npmignore` updated: excluded `.barebrowse/`, `.mcp.json`, `baremobile.md`, `CLAUDE.md`, `docs/` from tarball
9
+ - Package size: 41 files / 390KB → 21 files / 180KB
6
10
 
7
11
  ### bareagent adapter
8
12
  - Added `hover`, `tabs`, `switchTab`, `pdf` tools (was 13 + assess, now 17 + assess)
@@ -12,10 +16,6 @@ bareagent tool parity + test fix.
12
16
  - Fixed 2 snapshot URL prefix assertions (`# url` → `url: url`) to match 0.4.7 format change
13
17
  - 69/69 passing
14
18
 
15
- ### Version
16
- - Package version: 0.5.1
17
- - MCP server version string updated
18
-
19
19
  ## 0.5.0
20
20
 
21
21
  Privacy assessment via wearehere integration.
@@ -1,7 +1,7 @@
1
1
  # barebrowse -- Integration Guide
2
2
 
3
3
  > For AI assistants and developers wiring barebrowse into a project.
4
- > v0.5.1 | Node.js >= 22 | 0 required deps | MIT
4
+ > v0.5.2 | Node.js >= 22 | 0 required deps | MIT
5
5
 
6
6
  ## What this is
7
7
 
package/mcp-server.js CHANGED
@@ -286,7 +286,7 @@ async function handleMessage(msg) {
286
286
  return jsonrpcResponse(id, {
287
287
  protocolVersion: '2024-11-05',
288
288
  capabilities: { tools: {} },
289
- serverInfo: { name: 'barebrowse', version: '0.5.1' },
289
+ serverInfo: { name: 'barebrowse', version: '0.5.2' },
290
290
  });
291
291
  }
292
292
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "barebrowse",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
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",