2025-11-17 03:18:43 -08:00
|
|
|
{
|
|
|
|
|
"description": "Hookify plugin - User-configurable hooks from .local.md files",
|
|
|
|
|
"hooks": {
|
|
|
|
|
"PreToolUse": [
|
|
|
|
|
{
|
2025-12-15 18:14:58 +00:00
|
|
|
"matcher": "*",
|
2025-11-17 03:18:43 -08:00
|
|
|
"hooks": [
|
|
|
|
|
{
|
|
|
|
|
"type": "command",
|
|
|
|
|
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/pretooluse.py",
|
|
|
|
|
"timeout": 10
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"PostToolUse": [
|
|
|
|
|
{
|
2025-12-15 18:14:58 +00:00
|
|
|
"matcher": "*",
|
2025-11-17 03:18:43 -08:00
|
|
|
"hooks": [
|
|
|
|
|
{
|
|
|
|
|
"type": "command",
|
|
|
|
|
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/posttooluse.py",
|
|
|
|
|
"timeout": 10
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"Stop": [
|
|
|
|
|
{
|
2025-12-15 18:14:58 +00:00
|
|
|
"matcher": "*",
|
2025-11-17 03:18:43 -08:00
|
|
|
"hooks": [
|
|
|
|
|
{
|
|
|
|
|
"type": "command",
|
|
|
|
|
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/stop.py",
|
|
|
|
|
"timeout": 10
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"UserPromptSubmit": [
|
|
|
|
|
{
|
2025-12-15 18:14:58 +00:00
|
|
|
"matcher": "*",
|
2025-11-17 03:18:43 -08:00
|
|
|
"hooks": [
|
|
|
|
|
{
|
|
|
|
|
"type": "command",
|
|
|
|
|
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/userpromptsubmit.py",
|
|
|
|
|
"timeout": 10
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|