Summary
When running Claude Code in a Docker sandbox, I'd like to combine remote-control with --dangerously-skip-permissions so I can monitor and control sandboxed agents from the web or mobile app.
Current behavior
The two features are incompatible:
claude remote-control --dangerously-skip-permissions → Error: Unknown argument: --dangerously-skip-permissions
claude --dangerously-skip-permissions remote-control → doesn't start remote control
Expected behavior
A single command that enables both, e.g.:
claude remote-control --dangerously-skip-permissions --name my-sandbox
Use case
Running multiple isolated Claude agents in Docker containers (each with its own git clone and branch). --dangerously-skip-permissions is needed because the containers are sandboxed. remote-control would let me monitor and steer each agent from the web/mobile UI without needing terminal access to the container.
Summary
When running Claude Code in a Docker sandbox, I'd like to combine
remote-controlwith--dangerously-skip-permissionsso I can monitor and control sandboxed agents from the web or mobile app.Current behavior
The two features are incompatible:
claude remote-control --dangerously-skip-permissions→Error: Unknown argument: --dangerously-skip-permissionsclaude --dangerously-skip-permissions remote-control→ doesn't start remote controlExpected behavior
A single command that enables both, e.g.:
Use case
Running multiple isolated Claude agents in Docker containers (each with its own git clone and branch).
--dangerously-skip-permissionsis needed because the containers are sandboxed.remote-controlwould let me monitor and steer each agent from the web/mobile UI without needing terminal access to the container.