(path: string)
| 249 | } |
| 250 | |
| 251 | function handleChange(path: string): void { |
| 252 | logForDebugging(`Detected skill change: ${path}`) |
| 253 | logEvent('ncode_skill_file_changed', { |
| 254 | source: |
| 255 | 'chokidar' as AnalyticsMetadata_I_VERIFIED_THIS_IS_NOT_CODE_OR_FILEPATHS, |
| 256 | }) |
| 257 | |
| 258 | scheduleReload(path) |
| 259 | } |
| 260 | |
| 261 | /** |
| 262 | * Debounce rapid skill changes into a single reload. When many skill files |
nothing calls this directly
no test coverage detected