fix(hooks): remove hooks, rely on skill descriptions for activation

Hooks with command type not suitable for skills-dir plugins.
All 26 skills have MANDATORY — always active descriptions that
auto-trigger based on context, code, and project files.
This commit is contained in:
asepharyana
2026-07-26 12:10:53 +07:00
parent f149899ad5
commit f40e925431
3 changed files with 0 additions and 88 deletions
-23
View File
@@ -1,23 +0,0 @@
{
"hooks": {
"SessionStart": [{
"matcher": "startup|resume|compact",
"hooks": [{
"type": "command",
"command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/detect-project.sh\"",
"shell": "bash",
"timeout": 10,
"async": false
}]
}],
"PreToolUse": [{
"matcher": "Write|Edit",
"hooks": [{
"type": "command",
"command": "\"${CLAUDE_PLUGIN_ROOT}/hooks/scripts/detect-file-type.sh\"",
"shell": "bash",
"timeout": 10
}]
}]
}
}