| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "description": "Hookify plugin - User-configurable hooks from .local.md files",
- "hooks": {
- "PreToolUse": [
- {
- "hooks": [
- {
- "type": "command",
- "command": "python3 \"${CLAUDE_PLUGIN_ROOT}/hooks/pretooluse.py\"",
- "timeout": 10
- }
- ]
- }
- ],
- "PostToolUse": [
- {
- "hooks": [
- {
- "type": "command",
- "command": "python3 \"${CLAUDE_PLUGIN_ROOT}/hooks/posttooluse.py\"",
- "timeout": 10
- }
- ]
- }
- ],
- "Stop": [
- {
- "hooks": [
- {
- "type": "command",
- "command": "python3 \"${CLAUDE_PLUGIN_ROOT}/hooks/stop.py\"",
- "timeout": 10
- }
- ]
- }
- ],
- "UserPromptSubmit": [
- {
- "hooks": [
- {
- "type": "command",
- "command": "python3 \"${CLAUDE_PLUGIN_ROOT}/hooks/userpromptsubmit.py\"",
- "timeout": 10
- }
- ]
- }
- ]
- }
- }
|