Problem:
When passing boolean flags like --continue and --resume to Claude Code
through ccr, they were incorrectly transformed to "--continue true" and
"--resume true". Claude Code expects these as standalone flags without
values, causing them to not be recognized.
Solution:
Modified the argument reconstruction logic in codeCommand.ts to check if
a flag value is boolean true. Boolean flags are now passed without values
(e.g., "--continue"), while non-boolean flags retain their values
(e.g., "--option value").