(&self)
| 280 | } |
| 281 | |
| 282 | fn supported_hooks(&self) -> Vec<HookType> { |
| 283 | vec![ |
| 284 | HookType::SessionStart, |
| 285 | HookType::SessionEnd, |
| 286 | HookType::TurnStart, |
| 287 | HookType::TurnEnd, |
| 288 | HookType::PreToolUse, |
| 289 | HookType::PostToolUse, |
| 290 | ] |
| 291 | } |
| 292 | |
| 293 | fn detect_presence(&self, repo_root: &Path) -> bool { |
| 294 | repo_root.join(CLAUDE_DIR).is_dir() |
no outgoing calls