Question
dl --force <ws> --rm force-deletes: verb_command reads cli.force with no positional check (rust/dl/src/cli.rs:756) while workspace_command consults force_placement (cli.rs:847-882) and refuses the same misparse for the word verbs. The guard's own rationale ("clap-parsed Rust silently accepted the flag and deleted") applies identically to both spellings.
Route verb_command through the same placement check, red-first: failing grammar tests for dl --force <ws> --rm and dl --rm --force <ws> (must refuse and delete nothing), while dl <ws> --rm --force keeps working.
Question
dl --force <ws> --rmforce-deletes:verb_commandreadscli.forcewith no positional check (rust/dl/src/cli.rs:756) whileworkspace_commandconsultsforce_placement(cli.rs:847-882) and refuses the same misparse for the word verbs. The guard's own rationale ("clap-parsed Rust silently accepted the flag and deleted") applies identically to both spellings.Route
verb_commandthrough the same placement check, red-first: failing grammar tests fordl --force <ws> --rmanddl --rm --force <ws>(must refuse and delete nothing), whiledl <ws> --rm --forcekeeps working.