(&self)
| 362 | } |
| 363 | |
| 364 | fn supported_hooks(&self) -> Vec<HookType> { |
| 365 | vec![ |
| 366 | HookType::SessionStart, |
| 367 | HookType::SessionEnd, |
| 368 | HookType::TurnStart, |
| 369 | HookType::TurnEnd, |
| 370 | HookType::PostToolUse, |
| 371 | ] |
| 372 | } |
| 373 | |
| 374 | fn detect_presence(&self, repo_root: &Path) -> bool { |
| 375 | // Devin is present if the .devin directory exists |
no outgoing calls