(&self)
| 337 | } |
| 338 | |
| 339 | fn supported_hooks(&self) -> Vec<HookType> { |
| 340 | vec![ |
| 341 | HookType::SessionStart, |
| 342 | HookType::SessionEnd, |
| 343 | HookType::TurnStart, |
| 344 | HookType::TurnEnd, |
| 345 | HookType::PreToolUse, |
| 346 | HookType::PostToolUse, |
| 347 | ] |
| 348 | } |
| 349 | |
| 350 | fn detect_presence(&self, repo_root: &Path) -> bool { |
| 351 | repo_root.join(CODEX_DIR).is_dir() |
no outgoing calls