(&self)
| 300 | } |
| 301 | |
| 302 | fn supported_hooks(&self) -> Vec<HookType> { |
| 303 | vec![ |
| 304 | HookType::SessionStart, |
| 305 | HookType::TurnStart, |
| 306 | HookType::TurnEnd, |
| 307 | HookType::PreToolUse, |
| 308 | HookType::PostToolUse, |
| 309 | ] |
| 310 | } |
| 311 | |
| 312 | fn detect_presence(&self, repo_root: &Path) -> bool { |
| 313 | repo_root.join(CODEX_DIR).is_dir() |
no outgoing calls