(&self)
| 1025 | } |
| 1026 | |
| 1027 | fn supported_hooks(&self) -> Vec<HookType> { |
| 1028 | vec![ |
| 1029 | HookType::TurnStart, |
| 1030 | HookType::TurnEnd, |
| 1031 | HookType::PostToolUse, |
| 1032 | ] |
| 1033 | } |
| 1034 | |
| 1035 | fn detect_presence(&self, repo_root: &Path) -> bool { |
| 1036 | repo_root.join(AGENTS_DIR).is_dir() |
no outgoing calls