Files
2025-11-30 08:42:05 +08:00

33 lines
598 B
JSON

{
"description": "Git intelligence hooks for session context and summaries",
"hooks": {
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/install-deps.sh",
"timeout": 30
},
{
"type": "command",
"command": "bun run ${CLAUDE_PLUGIN_ROOT}/hooks/git-context-loader.ts",
"timeout": 10
}
]
}
],
"PreCompact": [
{
"hooks": [
{
"type": "command",
"command": "bun run ${CLAUDE_PLUGIN_ROOT}/hooks/session-summary.ts",
"timeout": 5
}
]
}
]
}
}