| 1 | package org.miniclaudecode.hook; |
| 2 | |
| 3 | public class HookEvent { |
| 4 | |
| 5 | public static final String USER_PROMPT_SUBMIT = "UserPromptSubmit"; // 用户输入提交后 |
| 6 | |
| 7 | public static final String PRE_TOOL_USE = "PreToolUse"; // 工具执行前 |
| 8 | |
| 9 | public static final String POST_TOOL_USE = "PostToolUse"; // 工具执行后 |
| 10 | |
| 11 | public static final String STOP = "Stop"; // Agent 循环停止时 |
| 12 | |
| 13 | private HookEvent() { |
| 14 | } |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected