(&self)
| 347 | } |
| 348 | |
| 349 | fn supported_hooks(&self) -> Vec<HookType> { |
| 350 | vec![ |
| 351 | HookType::SessionStart, |
| 352 | HookType::SessionEnd, |
| 353 | HookType::TurnStart, |
| 354 | HookType::TurnEnd, |
| 355 | HookType::PreToolUse, |
| 356 | HookType::PostToolUse, |
| 357 | ] |
| 358 | } |
| 359 | |
| 360 | fn detect_presence(&self, repo_root: &Path) -> bool { |
| 361 | // Kilo is present if the .kilo directory exists |
no outgoing calls