diff --git a/plugins/graceful-handoff/hooks/hooks.json b/plugins/graceful-handoff/hooks/hooks.json new file mode 100644 index 0000000..a89fe5c --- /dev/null +++ b/plugins/graceful-handoff/hooks/hooks.json @@ -0,0 +1,31 @@ +{ + "hooks": { + "SessionStart": [ + { + "hooks": [ + { + "type": "command", + "command": "node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/session-start-load-handoff.mjs", + "timeout": 5 + } + ] + } + ], + "Stop": [ + { + "hooks": [ + { + "type": "command", + "command": "node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/stop-context-monitor.mjs", + "timeout": 30 + } + ] + } + ] + }, + "statusLine": { + "type": "command", + "command": "node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/statusline-monitor.mjs", + "padding": 0 + } +}