claudelink-bridge 0.1.3 → 0.1.4
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 +24 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -219,6 +219,30 @@ npx claudelink-bridge setup # re-registers the service
|
|
|
219
219
|
|
|
220
220
|
---
|
|
221
221
|
|
|
222
|
+
## Changelog
|
|
223
|
+
|
|
224
|
+
### 0.1.3
|
|
225
|
+
- Expanded platform setup docs with per-platform verify, log, and restart steps
|
|
226
|
+
|
|
227
|
+
### 0.1.2
|
|
228
|
+
- Added full README with quick-start, commands, platform setup, troubleshooting, and security sections
|
|
229
|
+
- Added `repository`, `homepage`, `bugs` metadata to package
|
|
230
|
+
- Added `files` whitelist — cleaner published package
|
|
231
|
+
|
|
232
|
+
### 0.1.1
|
|
233
|
+
- Initial README added
|
|
234
|
+
|
|
235
|
+
### 0.1.0
|
|
236
|
+
- Initial release
|
|
237
|
+
- WebSocket bridge server on `localhost:9999`
|
|
238
|
+
- Streams Claude Code CLI responses token by token
|
|
239
|
+
- Auto-start service installer for macOS (launchd), Linux (systemd), Windows (Task Scheduler)
|
|
240
|
+
- `setup`, `start`, `stop`, `status`, `kill`, `uninstall` commands
|
|
241
|
+
- Handles screenshots as base64 inline images for Claude
|
|
242
|
+
- 50MB max payload for large screenshots
|
|
243
|
+
|
|
244
|
+
---
|
|
245
|
+
|
|
222
246
|
## Links
|
|
223
247
|
|
|
224
248
|
- [ClaudeLink Chrome Extension](https://github.com/devops-monk/claude-link)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claudelink-bridge",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Bridge your browser to Claude Code CLI. The local server for the ClaudeLink Chrome extension — send screenshots, page content, and custom commands from any webpage directly to Claude Code.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|