1189
// Skip files that have all hooks disabled
1190
if (disabledAllHooks) {
1191
>
this.logger.trace(`[PromptsService] Skipping hook file with disableAllHooks: ${hookFile.uri}`);
promptsServiceImpl.ts
1192
>
return {
1193
>
file: {
1194
>
status: 'skipped',
1195
>
skipReason: 'all-hooks-disabled',
1196
>
promptPath: this.withPromptPathMetadata(hookFile, name, hookFile.description),
1197
>
},
1198
>
};
1199
>
}
1200
1201
// Skip Claude hooks when the setting is disabled (after parsing to check for commands)