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