diff --git a/cedar-plugin/hooks/hooks.json b/cedar-plugin/hooks/hooks.json deleted file mode 100644 index ba92229..0000000 --- a/cedar-plugin/hooks/hooks.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "hooks": { - "UserPromptSubmit": [ - { - "hooks": [ - { - "type": "mcp_tool", - "server": "plugin:cedar:cedar-mcp", - "tool": "record-message", - "input": { - "event": "UserPromptSubmit", - "role": "user", - "content": "${prompt}", - "session_id": "${session_id}" - }, - "timeout": 30 - } - ] - } - ], - "Stop": [ - { - "hooks": [ - { - "type": "mcp_tool", - "server": "plugin:cedar:cedar-mcp", - "tool": "record-message", - "input": { - "event": "Stop", - "role": "assistant", - "content": "${last_assistant_message}", - "session_id": "${session_id}" - }, - "timeout": 30 - } - ] - } - ], - "PostToolUse": [ - { - "hooks": [ - { - "type": "mcp_tool", - "server": "plugin:cedar:cedar-mcp", - "tool": "record-tool-call", - "input": { - "tool_name": "${tool_name}", - "tool_input": "${tool_input}", - "tool_result": "${tool_result}", - "session_id": "${session_id}" - }, - "timeout": 30 - } - ] - } - ] - } -}