(&self)
| 430 | } |
| 431 | |
| 432 | fn supported_hooks(&self) -> Vec<HookType> { |
| 433 | vec![ |
| 434 | HookType::SessionStart, |
| 435 | HookType::SessionEnd, |
| 436 | HookType::TurnStart, |
| 437 | HookType::TurnEnd, |
| 438 | HookType::PreToolUse, |
| 439 | HookType::PostToolUse, |
| 440 | ] |
| 441 | } |
| 442 | |
| 443 | fn detect_presence(&self, repo_root: &Path) -> bool { |
| 444 | repo_root.join(CLINERULES_DIR).is_dir() |
no outgoing calls