claude-remote-cli 3.0.6 → 3.0.9
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/dist/bin/claude-remote-cli.js +3 -0
- package/dist/frontend/assets/{index-BBvs0auR.js → index-De_IzAmR.js} +17 -17
- package/dist/frontend/assets/{index-CVH0jxa8.css → index-yTmvRrnt.css} +1 -1
- package/dist/frontend/index.html +2 -2
- package/dist/server/index.js +75 -6
- package/dist/server/pty-handler.js +216 -0
- package/dist/server/push.js +54 -3
- package/dist/server/sdk-handler.js +539 -0
- package/dist/server/sessions.js +191 -263
- package/dist/server/types.js +13 -0
- package/dist/server/ws.js +159 -32
- package/dist/test/branch-rename.test.js +28 -0
- package/dist/test/sessions.test.js +23 -7
- package/package.json +2 -1
|
@@ -33,6 +33,7 @@ Options:
|
|
|
33
33
|
--port <port> Override server port (default: 3456)
|
|
34
34
|
--host <host> Override bind address (default: 0.0.0.0)
|
|
35
35
|
--config <path> Path to config.json (default: ~/.config/claude-remote-cli/config.json)
|
|
36
|
+
--debug-log Enable SDK event debug logging to ~/.config/claude-remote-cli/debug/
|
|
36
37
|
--yolo With 'worktree add': pass --dangerously-skip-permissions to Claude
|
|
37
38
|
--version, -v Show version
|
|
38
39
|
--help, -h Show this help`);
|
|
@@ -208,4 +209,6 @@ if (portArg !== undefined)
|
|
|
208
209
|
const hostArg = getArg('--host');
|
|
209
210
|
if (hostArg !== undefined)
|
|
210
211
|
process.env['CLAUDE_REMOTE_HOST'] = hostArg;
|
|
212
|
+
if (args.includes('--debug-log'))
|
|
213
|
+
process.env['CLAUDE_REMOTE_DEBUG_LOG'] = '1';
|
|
211
214
|
await import('../server/index.js');
|