(&self)
| 716 | } |
| 717 | |
| 718 | fn supported_hooks(&self) -> Vec<HookType> { |
| 719 | vec![ |
| 720 | HookType::SessionStart, |
| 721 | HookType::SessionEnd, |
| 722 | HookType::TurnStart, |
| 723 | HookType::TurnEnd, |
| 724 | HookType::PreToolUse, |
| 725 | HookType::PostToolUse, |
| 726 | ] |
| 727 | } |
| 728 | |
| 729 | fn detect_presence(&self, repo_root: &Path) -> bool { |
| 730 | repo_root.join(GEMINI_DIR).is_dir() |
no outgoing calls