Files
claude-code-best-practice/.codex/hooks.json
T
2026-03-17 20:11:49 +05:00

30 lines
628 B
JSON

{
"hooks": {
"SessionStart": [
{
"matcher": "^startup$",
"hooks": [
{
"type": "command",
"command": "python3 .codex/hooks/scripts/hooks.py --hook SessionStart",
"timeout": 10,
"statusMessage": "Loading project context"
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "python3 .codex/hooks/scripts/hooks.py --hook Stop",
"timeout": 10,
"statusMessage": "Running session stop hook"
}
]
}
]
}
}