updated hooks

This commit is contained in:
Shayan Rais
2026-03-15 12:45:48 +05:00
parent 67a5d2333e
commit 0399ff6824
12 changed files with 80 additions and 23 deletions
+40 -1
View File
@@ -78,7 +78,7 @@
},
"enableAllProjectMcpServers": true,
"disableAllHooks": false,
"hooks": {
"hooks": {
"PreToolUse": [
{
"hooks": [
@@ -210,6 +210,19 @@
]
}
],
"PostCompact": [
{
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PROJECT_DIR}/.claude/hooks/scripts/hooks.py",
"timeout": 5000,
"async": true,
"statusMessage": "PostCompact"
}
]
}
],
"SessionStart": [
{
"hooks": [
@@ -328,6 +341,32 @@
}
]
}
],
"Elicitation": [
{
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PROJECT_DIR}/.claude/hooks/scripts/hooks.py",
"timeout": 5000,
"async": true,
"statusMessage": "Elicitation"
}
]
}
],
"ElicitationResult": [
{
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PROJECT_DIR}/.claude/hooks/scripts/hooks.py",
"timeout": 5000,
"async": true,
"statusMessage": "ElicitationResult"
}
]
}
]
}
}