{ "description": "Claude-mem memory system hooks", "hooks": { "SessionStart": [ { "hooks": [ { "type": "command", "command": "bun ${CLAUDE_PLUGIN_ROOT}/scripts/hooks/context-hook.js", "timeout": 180000 } ] } ], "UserPromptSubmit": [ { "hooks": [ { "type": "command", "command": "bun ${CLAUDE_PLUGIN_ROOT}/scripts/hooks/new-hook.js", "timeout": 60000 } ] } ], "PostToolUse": [ { "matcher": "*", "hooks": [ { "type": "command", "command": "bun ${CLAUDE_PLUGIN_ROOT}/scripts/hooks/save-hook.js", "timeout": 180000 } ] } ], "Stop": [ { "hooks": [ { "type": "command", "command": "bun ${CLAUDE_PLUGIN_ROOT}/scripts/hooks/summary-hook.js", "timeout": 60000 } ] } ] } }