What's wrong with this entry?
Adds a new bash_command event type that allows remote clients (e.g. Claude Code Remote) to dispatch shell commands directly to a session without going through the model.
- The event schema includes a
commandstring and optionalcwdfor the working directory - Executed via a one-shot
/bin/sh -c(orpwshon Windows) subprocess, bypassing the model entirely - Output includes stdout, stderr, and exit code wrapped in XML tags
- This allows CCR clients that surface a dedicated terminal UI to run shell commands natively
New Zod schema with type: "bash_command" (search for "bash_command") and handler function sendBashCommand (search for "[RemoteSessionManager] Sending bash_command to session")
Strings lifted out of the shipped bundle, so the claim above can be checked against them.