fix(scripts): correct Claude command to pass prompt as argument
The issue was using `--print` flag which makes Claude run in non-interactive mode and exit immediately. Changed from: claude --dangerously-skip-permissions --print < prompt.md To: claude --dangerously-skip-permissions "$(cat prompt.md)" This passes the prompt as a command-line argument (as shown in claude --help) instead of stdin, allowing Claude to start in interactive mode properly. Updated all launch options (1, 3, 4) and display commands (5). Fixes: Claude Code not starting when launched via script
C
Codex Agent committed
45453aff7c8b69d7c032a9d5fecd9d57d34be774
Parent: aaf47e3