(&self)
| 215 | |
| 216 | impl Hooks { |
| 217 | fn should_handoff_codex_stop(&self) -> bool { |
| 218 | !self.foreground && self.agent_name == "codex" && self.verb == "stop" |
| 219 | } |
| 220 | |
| 221 | fn handoff_codex_stop(&self, input: &[u8]) -> CliResult<()> { |
| 222 | let exe = std::env::current_exe().map_err(|e| { |