(&self)
| 423 | } |
| 424 | |
| 425 | fn supported_hooks(&self) -> Vec<HookType> { |
| 426 | vec![ |
| 427 | HookType::SessionStart, |
| 428 | HookType::SessionEnd, |
| 429 | HookType::TurnStart, |
| 430 | HookType::PreToolUse, |
| 431 | HookType::PostToolUse, |
| 432 | ] |
| 433 | } |
| 434 | |
| 435 | fn detect_presence(&self, repo_root: &Path) -> bool { |
| 436 | // Copilot works in any GitHub repo — detect via .github/ directory |
no outgoing calls