Files
gh-jbabin91-super-claude-pl…/hooks/hooks.json
2025-11-29 18:50:12 +08:00

50 lines
1.1 KiB
JSON

{
"hooks": {
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/session-checklist.ts"
}
]
}
],
"PreToolUse": [
{
"matcher": "Edit|Write",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/type-checker.ts"
}
]
},
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/git-commit-guard.ts"
},
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/branch-name-validator.ts"
}
]
}
],
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/skill-activation-prompt.ts"
}
]
}
]
},
"description": "Workflow plugin hooks for session checklists, type checking, commit guards, branch name validation, and skill auto-activation"
}