npx claudepluginhub evermind-ai/evermem-claude-code --plugin evermemDefined in hooks/hooks.json
{
"Stop": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/store-memories.js",
"timeout": 30
}
],
"matcher": "*"
}
],
"SessionEnd": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/session-summary.js",
"timeout": 30
}
],
"matcher": "*"
}
],
"SessionStart": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/session-context-wrapper.sh",
"timeout": 30
}
],
"matcher": "*"
}
],
"UserPromptSubmit": [
{
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/scripts/inject-memories.js",
"timeout": 10
}
],
"matcher": "*"
}
]
}"Coordinates multi-agent workflows: loads/saves session memory on start/end, checks resources and agent heartbeats before user prompts, blocks exit until handoffs saved. Runs Python scripts."