(&self, repo_root: &Path)
| 310 | } |
| 311 | |
| 312 | fn detect_presence(&self, repo_root: &Path) -> bool { |
| 313 | repo_root.join(CODEX_DIR).is_dir() |
| 314 | || Self::global_hooks_path().is_some_and(|path| path.exists()) |
| 315 | } |
| 316 | |
| 317 | fn hook_verbs(&self) -> Vec<&str> { |
| 318 | vec![ |