17 lines
628 B
JSON
17 lines
628 B
JSON
{
|
|
"hooks": {
|
|
"PreToolUse": [
|
|
{ "matcher": "Bash", "hooks": [{ "type": "command", "command": "echo pre-bash", "timeout": 5000 }] }
|
|
],
|
|
"PostToolUse": [
|
|
{ "matcher": "Write", "hooks": [{ "type": "command", "command": "echo post-write", "timeout": 5000 }] },
|
|
{ "matcher": "Edit", "hooks": [{ "type": "command", "command": "echo post-edit", "timeout": 5000 }] }
|
|
],
|
|
"SessionStart": [
|
|
{ "hooks": [{ "type": "command", "command": "echo session-start", "timeout": 5000 }] }
|
|
],
|
|
"Stop": [
|
|
{ "hooks": [{ "type": "command", "command": "echo stop", "timeout": 5000 }] }
|
|
]
|
|
}
|
|
}
|