(path: string)
| 235 | } |
| 236 | |
| 237 | function handleChange(path: string): void { |
| 238 | logForDebugging(`Detected skill change: ${path}`) |
| 239 | logEvent('tengu_skill_file_changed', { |
| 240 | source: |
| 241 | 'chokidar' as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS, |
| 242 | }) |
| 243 | |
| 244 | scheduleReload(path) |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Debounce rapid skill changes into a single reload. When many skill files |
nothing calls this directly
no test coverage detected