claude-remote-cli 3.0.3 → 3.0.5

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,7 +33,6 @@ 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/
37
36
  --yolo With 'worktree add': pass --dangerously-skip-permissions to Claude
38
37
  --version, -v Show version
39
38
  --help, -h Show this help`);
@@ -209,6 +208,4 @@ if (portArg !== undefined)
209
208
  const hostArg = getArg('--host');
210
209
  if (hostArg !== undefined)
211
210
  process.env['CLAUDE_REMOTE_HOST'] = hostArg;
212
- if (args.includes('--debug-log'))
213
- process.env['CLAUDE_REMOTE_DEBUG_LOG'] = '1';
214
211
  await import('../server/index.js');