File size: 729 Bytes
c3a3710 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | {
"_comment": "Merge this fragment into ~/.claude/settings.json under the 'hooks' key.",
"_note": "Replace MNEMOCORE_INTEGRATIONS_PATH with the absolute path to integrations/claude_code/hooks/",
"hooks": {
"PreToolUse": [
{
"matcher": ".*",
"hooks": [
{
"type": "command",
"command": "python MNEMOCORE_INTEGRATIONS_PATH/pre_session_inject.py"
}
]
}
],
"PostToolUse": [
{
"matcher": "Edit|Write|MultiEdit",
"hooks": [
{
"type": "command",
"command": "python MNEMOCORE_INTEGRATIONS_PATH/post_tool_store.py"
}
]
}
]
}
}
|