Files
2026-08-18 17:19:14 -07:00

51 lines
1.0 KiB
JSON

{
"description": "Supermemory: persistent memory for Claude Code",
"hooks": {
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/session-start.js\"",
"timeout": 30
}
]
}
],
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/recall-directive.js\"",
"timeout": 10
}
]
}
],
"PreToolUse": [
{
"matcher": "mcp__.*supermemory.*",
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/recall-approve.js\"",
"timeout": 10
}
]
}
],
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/capture.js\"",
"timeout": 30
}
]
}
]
}
}