@btraut/browser-bridge 0.2.0 → 0.3.0
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 +29 -0
- package/README.md +15 -1
- package/dist/index.js +630 -21
- package/dist/index.js.map +4 -4
- package/package.json +4 -2
- package/skills/browser-bridge/skill.json +4 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on "Keep a Changelog", and this project adheres to Semantic Versioning.
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [0.3.0] - 2026-02-06
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- `browser-bridge install` interactive installer for skills and MCP.
|
|
14
|
+
- `browser-bridge skill install` and `browser-bridge skill status`.
|
|
15
|
+
- `browser-bridge mcp install` for Codex, Claude, and Cursor.
|
|
16
|
+
- Skill version manifest (`skill.json`) to detect out-of-date installs.
|
|
17
|
+
- `browser-bridge mcp serve` (while keeping `browser-bridge mcp` working).
|
|
18
|
+
|
|
19
|
+
## [0.2.0] - 2026-02-05
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
- `browser-bridge inspect dom-snapshot --max-nodes <n>` (AX format only) to bound snapshot size for agent/LLM consumption.
|
|
24
|
+
|
|
25
|
+
## [0.1.1] - 2026-02-05
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
|
|
29
|
+
- Initial release.
|
package/README.md
CHANGED
|
@@ -56,7 +56,13 @@ Notes:
|
|
|
56
56
|
|
|
57
57
|
## Skills (Codex + Claude Code)
|
|
58
58
|
|
|
59
|
-
|
|
59
|
+
Easiest option (recommended):
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
browser-bridge install
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Or copy the Browser Bridge skill into your agent skills directory:
|
|
60
66
|
|
|
61
67
|
```bash
|
|
62
68
|
# From this repo:
|
|
@@ -113,6 +119,14 @@ claude mcp add --transport stdio browser-bridge \
|
|
|
113
119
|
- CLI: `browser-bridge diagnostics doctor --session-id <id>`
|
|
114
120
|
- Reports extension and debugger status alongside session state.
|
|
115
121
|
|
|
122
|
+
## Changelog
|
|
123
|
+
|
|
124
|
+
See `CHANGELOG.md`.
|
|
125
|
+
|
|
126
|
+
## Releasing
|
|
127
|
+
|
|
128
|
+
See `docs/releasing.md`.
|
|
129
|
+
|
|
116
130
|
## Security Model (v1)
|
|
117
131
|
|
|
118
132
|
- Extension <-> Core WebSocket has no authentication; trust local machine only.
|