The `tool_input.command` string, if any (Bash's shell command). Empty when absent. Shared with the Claude hint path so it reads the command from the same place the daemon-sync path does.
(parsed: &Value)
| 131 | /// absent. Shared with the Claude hint path so it reads the command from the |
| 132 | /// same place the daemon-sync path does. |
| 133 | pub(super) fn tool_input_command_str(parsed: &Value) -> Option<String> { |
| 134 | let command = tool_input_command(parsed); |
| 135 | (!command.is_empty()).then(|| command.to_string()) |
| 136 | } |
| 137 | |
| 138 | /// The `tool_input.file_path` string, if any (Grep/Glob/Read/Edit targets). |
| 139 | /// Empty when absent. |
no test coverage detected