claude-remote-cli 3.0.6 → 3.1.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.
@@ -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');